diff options
author | Tim Graham <timograham@gmail.com> | 2014-09-08 17:28:55 -0400 |
---|---|---|
committer | Tim Graham <timograham@gmail.com> | 2014-09-08 17:28:55 -0400 |
commit | 5cba975d26d10ff5d85e123fb2084671a009cc9b (patch) | |
tree | 884ced8456c08f90192c98e73d5fa4df623b1259 /django/utils/deconstruct.py | |
parent | f7eee04ebe32277d2f3d7860abfb9a22c6ccf19d (diff) | |
download | django-5cba975d26d10ff5d85e123fb2084671a009cc9b.tar.gz |
Fixed flake8 warning.
Diffstat (limited to 'django/utils/deconstruct.py')
-rw-r--r-- | django/utils/deconstruct.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/django/utils/deconstruct.py b/django/utils/deconstruct.py index 627c2a9c68..b580e0d238 100644 --- a/django/utils/deconstruct.py +++ b/django/utils/deconstruct.py @@ -1,5 +1,6 @@ from importlib import import_module + def deconstructible(*args, **kwargs): """ Class decorator that allow the decorated class to be serialized |