"""Django AppConfig module for the Gating app"""fromdjango.appsimportAppConfigclassGatingConfig(AppConfig):""" Django AppConfig class for the gating app """name='gating'defready(self):# Import signals to wire up the signal handlers contained withinfromgatingimportsignals# pylint: disable=unused-variable