1
0
mirror of synced 2024-06-03 12:58:04 +02:00

Make pyflakes happy

This commit is contained in:
jvoisin 2018-10-18 21:22:28 +02:00
parent 5896387ade
commit 2ae5d909c3

2
mat2
View File

@ -77,7 +77,7 @@ def __print_meta(filename: str, metadata: dict, depth: int=1):
print("[%s] Metadata for %s:" % ('+'*depth, filename))
for (k,v) in sorted(metadata.items()):
for (k, v) in sorted(metadata.items()):
if isinstance(v, dict):
__print_meta(k, v, depth+1)
continue