fix: format all code with black
and from now on should not deviate from that...
This commit is contained in:
parent
8a09fb1a3c
commit
4d0693862d
68 changed files with 6693 additions and 5659 deletions
|
@ -17,7 +17,9 @@ class TestAllSettings(DataTestCase):
|
|||
def test_all(self):
|
||||
for name in dir(mod):
|
||||
obj = getattr(mod, name)
|
||||
if (isinstance(obj, type)
|
||||
if (
|
||||
isinstance(obj, type)
|
||||
and obj is not EmailSetting
|
||||
and issubclass(obj, EmailSetting)):
|
||||
and issubclass(obj, EmailSetting)
|
||||
):
|
||||
self.check_setting(obj)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue