Skip to content
This repository has been archived by the owner on Jun 26, 2021. It is now read-only.

Commit

Permalink
PEP-8 Auto-Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Travis AutoPEP8 Fixes committed Jun 7, 2019
1 parent 1bcd6bd commit 3b73d6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion delira/utils/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def __setattr__(self, key, value):
"""

if type(value) == dict or type(value) == Config:
if isinstance(value, dict) or isinstance(value, Config):
update_val = LookupConfig()
update_val.update(value, deep=False)
else:
Expand Down

0 comments on commit 3b73d6d

Please sign in to comment.