Skip to content

Commit 80d3281

Browse files
committed
gh-92810: Address review fixes
1 parent a6e4461 commit 80d3281

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/_py_abc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def register(cls, subclass):
6767
# This would create a cycle, which is bad for the algorithm below
6868
raise RuntimeError("Refusing to create an inheritance cycle")
6969
cls._abc_registry.add(subclass)
70-
ABCMeta._abc_invalidation_counter += 1 # Invalidate negative cache
70+
ABCMeta._abc_invalidation_counter += 1 # Invalidate negative cache
7171
return subclass
7272

7373
def _dump_registry(cls, file=None):

0 commit comments

Comments
 (0)