Skip to content

Commit 815e1da

Browse files
Update Lib/test/test_pprint.py
Co-authored-by: donBarbos <[email protected]>
1 parent 21c9fa6 commit 815e1da

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Lib/test/test_pprint.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1191,7 +1191,8 @@ class DummyUserList(collections.UserList):
11911191
def __init__(self, *args, **kwargs):
11921192
super().__init__(*args, **kwargs)
11931193
self.description = "foo"
1194-
dummy_userlist = DummyUserList(["first", 2, {"key": "value"}, [4, 5, 6]])
1194+
dummy_userlist = DummyUserList(["first", 2, {"key": "value"},
1195+
[4, 5, 6]])
11951196

11961197
dummy_samples = {
11971198
"dummy_dataclass": dummy_dataclass,

0 commit comments

Comments
 (0)