Fix a Python lint error

This commit is contained in:
Oleh Prypin
2022-08-06 16:53:02 +02:00
parent 22af92c874
commit c04dc81039

View File

@@ -37,7 +37,7 @@ def load_config(**cfg):
conf.load_dict(cfg)
errors_warnings = conf.validate()
assert(errors_warnings == ([], [])), errors_warnings
assert errors_warnings == ([], []), errors_warnings
return conf