Skip to content

Commit c544bef

Browse files
committed
Style fixing.
1 parent 31ec3e3 commit c544bef

File tree

4 files changed

+7
-2
lines changed

4 files changed

+7
-2
lines changed

src/lazy_object_proxy/simple.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
from .compat import PY3
55
from .compat import string_types
66
from .compat import with_metaclass
7-
from .utils import cached_property, await_
7+
from .utils import await_
8+
from .utils import cached_property
89
from .utils import identity
910

1011

src/lazy_object_proxy/slots.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
from .compat import PY3
55
from .compat import string_types
66
from .compat import with_metaclass
7-
from .utils import identity, await_
7+
from .utils import await_
8+
from .utils import identity
89

910

1011
class _ProxyMethods(object):

src/lazy_object_proxy/utils.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ def __get__(self, obj, cls):
1212
value = obj.__dict__[self.func.__name__] = self.func(obj)
1313
return value
1414

15+
1516
try:
1617
exec("""
1718
from inspect import isawaitable

tests/test_async_py3.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# flake8: noqa
2+
# test code was mostly copied from stdlib, can't be fixing this mad stuff...
13
import copy
24
import inspect
35
import pickle

0 commit comments

Comments
 (0)