Skip to content

Commit

Permalink
Fix pep8 issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Qalthos committed Jul 31, 2023
1 parent e760b5e commit e88e00b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit/mock/loader.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
class DictDataLoader(DataLoader):
def __init__(self, file_mapping=None):
file_mapping = {} if file_mapping is None else file_mapping
assert type(file_mapping) == dict
assert isinstance(file_mapping, dict)

super(DictDataLoader, self).__init__()

Expand Down

0 comments on commit e88e00b

Please sign in to comment.