summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjvoisin2018-10-18 21:22:28 +0200
committerjvoisin2018-10-18 21:22:28 +0200
commit2ae5d909c3e30c009bfc45bceba96ddd82f3e198 (patch)
treea4159ff2adebd04abe167dbcb3bed9c256f3fd2f
parent5896387ade9da9319faac6b30cddbad400ccb56d (diff)
Make pyflakes happy
-rwxr-xr-xmat22
1 files changed, 1 insertions, 1 deletions
diff --git a/mat2 b/mat2
index 38c0ede..1665576 100755
--- a/mat2
+++ b/mat2
@@ -77,7 +77,7 @@ def __print_meta(filename: str, metadata: dict, depth: int=1):
77 77
78 print("[%s] Metadata for %s:" % ('+'*depth, filename)) 78 print("[%s] Metadata for %s:" % ('+'*depth, filename))
79 79
80 for (k,v) in sorted(metadata.items()): 80 for (k, v) in sorted(metadata.items()):
81 if isinstance(v, dict): 81 if isinstance(v, dict):
82 __print_meta(k, v, depth+1) 82 __print_meta(k, v, depth+1)
83 continue 83 continue