Skip to content

Commit b3b5895

Browse files
committed
gh-92810: Fixes after review
1 parent 6fc994d commit b3b5895

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Lib/test/test_abc.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ class A(metaclass=abc_ABCMeta):
322322
pass
323323
class B(object):
324324
pass
325-
325+
326326
a = A()
327327
b = B()
328328
# trigger caching
@@ -353,7 +353,7 @@ class B(object):
353353

354354
class C(B):
355355
pass
356-
356+
357357
c = C()
358358
# trigger caching
359359
for _ in range(2):

0 commit comments

Comments
 (0)