Update to comply with new black rules

This commit is contained in:
Alan Rominger
2023-02-01 14:59:38 -05:00
parent 5ce6c14f74
commit f5785976be
323 changed files with 7 additions and 839 deletions

View File

@@ -117,7 +117,7 @@ class PseudoNamespace(dict):
for key in iterable:
self[key] = iterable[key]
else:
for (k, v) in iterable:
for k, v in iterable:
self[k] = v
for k in kw:
self[k] = kw[k]