1
0
Fork 0

Make pyflakes happy

This commit is contained in:
jvoisin 2018-10-18 21:22:28 +02:00
parent 5896387ade
commit 2ae5d909c3
1 changed files with 1 additions and 1 deletions

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