Skip to content

Commit 4f0406e

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 406a6ef commit 4f0406e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/test_pprint.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ def test_knotted(self):
174174
def test_unreadable(self):
175175
# Not recursive but not readable anyway
176176
pp = pprint.PrettyPrinter()
177-
for unreadable in type(3), pprint, pprint.isrecursive:
177+
for unreadable in int, pprint, pprint.isrecursive:
178178
# module-level convenience functions
179179
self.assertFalse(pprint.isrecursive(unreadable), f"expected not isrecursive for {unreadable!r}")
180180
self.assertFalse(pprint.isreadable(unreadable), f"expected not isreadable for {unreadable!r}")

0 commit comments

Comments
 (0)