"""Configuration for the setup wizard app."""from__future__importannotationsimportloggingfromtypingimportTYPE_CHECKINGfromdjango.appsimportAppConfigifTYPE_CHECKING:fromtypingimportAny
[docs]classSetupWizardConfig(AppConfig):"""Configuration for the setup wizard app."""
def__init__(self,*args:Any,**kwargs:Any)->None:"""Initializes the configuration for the setup wizard app. Args: *args: Any positional arguments will be passed to the super constructor. **kwargs: Any keyword arguments will be passed to the super constructor. """self.logger=logging.getLogger('tp').getChild('setup_wizard').getChild(self.__class__.__name__)super().__init__(*args,**kwargs)