diff options
author | Michele Simionato <michele.simionato@gmail.com> | 2018-04-15 10:45:16 +0200 |
---|---|---|
committer | Michele Simionato <michele.simionato@gmail.com> | 2018-04-15 10:45:16 +0200 |
commit | 2a5ee16f7f0051beecd6a7c56900442be0a1b413 (patch) | |
tree | 3b977f6d098619d0c474845f35717fe80c81f6b1 | |
parent | cea92181599e40e774e8d41cabe364bc8c5bd000 (diff) | |
download | python-decorator-git-2a5ee16f7f0051beecd6a7c56900442be0a1b413.tar.gz |
PEP8 fix
-rw-r--r-- | src/decorator.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/decorator.py b/src/decorator.py index 517d420..093feef 100644 --- a/src/decorator.py +++ b/src/decorator.py @@ -269,6 +269,7 @@ def decorator(caller, _func=None): dec.__defaults__ = (None,) + defaults return dec + # ####################### contextmanager ####################### # try: # Python >= 3.2 |