Skip to content

Commit

Permalink
fix pep8 line lengths
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexWaygood authored Dec 22, 2023
1 parent 944ab83 commit fec00be
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Lib/test/test_super.py
Original file line number Diff line number Diff line change
Expand Up @@ -409,8 +409,10 @@ def method(self, type_, obj):

cases = (
(int, c, int.__name__, C.__name__, "instance of"),
(C, list(), C.__name__, list.__name__, "instance of"), # obj is instance of type
(C, list, C.__name__, list.__name__, "type"), # obj is type itself
# obj is instance of type
(C, list(), C.__name__, list.__name__, "instance of"),
# obj is type itself
(C, list, C.__name__, list.__name__, "type"),
)

for case in cases:
Expand Down

0 comments on commit fec00be

Please sign in to comment.