Skip to content

Commit f6afaec

Browse files
committed
Fix formatting
1 parent b81977b commit f6afaec

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

Lib/functools.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1100,10 +1100,9 @@ def __call__(self, /, *args, **kwargs):
11001100
method = self._dispatch(args[0].__class__)
11011101
if hasattr(method, "__get__"):
11021102
method = method.__get__(self._obj, self._cls)
1103-
if (
1104-
self._skip_bound_arg
1105-
and isinstance(method, MethodType)
1106-
and method.__self__ is self):
1103+
if (self._skip_bound_arg
1104+
and isinstance(method, MethodType)
1105+
and method.__self__ is self):
11071106
args = args[1:]
11081107
return method(*args, **kwargs)
11091108

0 commit comments

Comments
 (0)