From 1b9608aecf25d5e58ee27b9b45afd7f77b883f8b Mon Sep 17 00:00:00 2001 From: jvoisin Date: Wed, 3 May 2023 22:28:02 +0200 Subject: Use proper type annotations instead of comments --- libmat2/exiftool.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libmat2/exiftool.py') diff --git a/libmat2/exiftool.py b/libmat2/exiftool.py index 2b91ac2..605ef0d 100644 --- a/libmat2/exiftool.py +++ b/libmat2/exiftool.py @@ -15,7 +15,7 @@ class ExiftoolParser(abstract.AbstractParser): from a import file, hence why several parsers are re-using its `get_meta` method. """ - meta_allowlist = set() # type: Set[str] + meta_allowlist: Set[str] = set() def get_meta(self) -> Dict[str, Union[str, Dict]]: try: -- cgit v1.3