Skip to content

Commit 6307d4e

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent d1af841 commit 6307d4e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/test_funcs.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,9 @@ class Int(int):
7171
pass
7272

7373
c = C(Int(10), [Int(1), 2])
74-
expected = {'x': 10, 'y': [1, 2]}
74+
expected = {"x": 10, "y": [1, 2]}
7575
assert expected == asdict(c)
76-
assert type(asdict(c)['x']) is Int
76+
assert type(asdict(c)["x"]) is Int
7777

7878
def test_nested_lists(self, C):
7979
"""

0 commit comments

Comments
 (0)