Skip to content

Commit

Permalink
Fix flake8 issues
Browse files Browse the repository at this point in the history
  • Loading branch information
wswld committed Dec 26, 2023
1 parent 3ef97a2 commit b10a067
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
4 changes: 2 additions & 2 deletions test/test_functional.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ def hello():
extra_attrs.sort()
assert len(extra_attrs) == 2
assert getattr(data_hello, extra_attrs[0]) == 1
assert getattr(data_hello, extra_attrs[1]) == (1,2)
assert getattr(data_hello, extra_attrs[1]) == (1, 2)


def test_file_data_decorator_with_dict():
Expand All @@ -137,7 +137,7 @@ def hello():
dh_keys = set(data_hello.__dict__.keys())
post_size = len(data_hello.__dict__)
assert post_size == pre_size + 2

extra_attrs = list(dh_keys - keys)
extra_attrs.sort()
assert len(extra_attrs) == 2
Expand Down
3 changes: 0 additions & 3 deletions test/test_named_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,3 @@ def test_missing_name_dict(self):
)
def _internal_test(value):
pass



0 comments on commit b10a067

Please sign in to comment.