Anna Sirota
239efb267f
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.
9 lines
175 B
Python
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
|