Skip to content

Commit fca3d7d

Browse files
committed
rollback unnecessary changes
1 parent c3df6e0 commit fca3d7d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Lib/functools.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,7 @@ def __setstate__(self, state):
407407
raise TypeError("trailing Placeholders are not allowed")
408408
phcount, merger = _partial_prepare_merger(args)
409409

410-
args = tuple(args) # just in case it's a subclass
410+
args = tuple(args) # just in case it's a subclass
411411
if kwds is None:
412412
kwds = {}
413413
elif type(kwds) is not dict: # XXX does it need to be *exactly* dict?
@@ -523,7 +523,7 @@ def __get__(self, obj, cls=None):
523523

524524
@property
525525
def __isabstractmethod__(self):
526-
return getattr(self.func, '__isabstractmethod__', False)
526+
return getattr(self.func, "__isabstractmethod__", False)
527527

528528
__class_getitem__ = classmethod(GenericAlias)
529529

0 commit comments

Comments
 (0)