looper/example_app/apps.py
Anna Sirota 239efb267f Fix billing address and subscription lookups
Looks like 806e9e2d0d
changed behaviour of `FIELD_set` causing `ValueError` when
`.billing_address` and `.subscription_set` are accessed on a `Customer`
that hadn't been yet saved to the database.
2024-06-20 13:38:35 +02:00

9 lines
175 B
Python

from django.apps import AppConfig
class ExampleAppConfig(AppConfig):
name = 'example_app'
def ready(self) -> None:
import example_app.signals # noqa: F401