Skip to content

Commit

Permalink
fixed decorator import
Browse files Browse the repository at this point in the history
  • Loading branch information
userzimmermann committed Aug 3, 2015
1 parent f3477b7 commit 58cc5bd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions moretools/_cached.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@

from inspect import getargspec

from decorator import decorator

from ._common import *


Expand Down
2 changes: 1 addition & 1 deletion moretools/_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
from itertools import *
from functools import *
from collections import *
from decorator import *
## from decorator import *


if PY2: # always use the iterator variants of the following standard tools
Expand Down
2 changes: 2 additions & 0 deletions moretools/_log.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@
"""
__all__ = ['logged']

from decorator import decorator

from ._common import *


Expand Down

0 comments on commit 58cc5bd

Please sign in to comment.