diff --git a/djstripe/__init__.py b/djstripe/__init__.py index f2ba08e..357828f 100644 --- a/djstripe/__init__.py +++ b/djstripe/__init__.py @@ -20,6 +20,7 @@ class DjstripeAppConfig(AppConfig): def ready(self): import stripe + print("in ready function of DjstripeAppConfig") from . import ( # noqa: Register the checks and event handlers checks, event_handlers, @@ -32,3 +33,4 @@ def ready(self): version=__version__, url="https://github.com/dj-stripe/dj-stripe", ) + print("after import event_handlers")