From 2444caccc0ae93255cdd32f792031f5fce093ea2 Mon Sep 17 00:00:00 2001 From: jvoisin Date: Thu, 11 Oct 2018 19:55:07 +0200 Subject: [PATCH] Make pylint happier --- mat2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mat2 b/mat2 index 2a76b4c..b4a6033 100755 --- a/mat2 +++ b/mat2 @@ -68,7 +68,7 @@ def show_meta(filename: str): __print_meta(filename, p.get_meta()) -def __print_meta(filename:str, metadata: dict, depth:int=1): +def __print_meta(filename: str, metadata: dict, depth: int=1): padding = " " * depth*2 if not metadata: print(padding + "No metadata found")