Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 511b155

Browse files
committed
Fix little flake8' complain
1 parent 6e3b122 commit 511b155

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

zerorpc/core.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -72,11 +72,11 @@ def _filter_methods(cls, self, methods):
7272
return methods
7373
server_methods = set(k for k in dir(cls) if not k.startswith('_'))
7474
return dict((k, getattr(methods, k))
75-
for k in dir(methods)
76-
if callable(getattr(methods, k))
77-
and not k.startswith('_')
78-
and k not in server_methods
79-
)
75+
for k in dir(methods)
76+
if callable(getattr(methods, k))
77+
and not k.startswith('_')
78+
and k not in server_methods
79+
)
8080

8181
@staticmethod
8282
def _extract_name(methods):

0 commit comments

Comments
 (0)