diff options
| author | jvoisin | 2023-05-03 22:28:02 +0200 |
|---|---|---|
| committer | jvoisin | 2023-05-03 22:28:02 +0200 |
| commit | 1b9608aecf25d5e58ee27b9b45afd7f77b883f8b (patch) | |
| tree | bec20a8bc88dc81891a8c908090d3221cd0178b0 /libmat2/exiftool.py | |
| parent | 2ac8c24dac5431a39cdc091dec47ba594f509387 (diff) | |
Use proper type annotations instead of comments
Diffstat (limited to 'libmat2/exiftool.py')
| -rw-r--r-- | libmat2/exiftool.py | 2 |
1 files changed, 1 insertions, 1 deletions
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): | |||
| 15 | from a import file, hence why several parsers are re-using its `get_meta` | 15 | from a import file, hence why several parsers are re-using its `get_meta` |
| 16 | method. | 16 | method. |
| 17 | """ | 17 | """ |
| 18 | meta_allowlist = set() # type: Set[str] | 18 | meta_allowlist: Set[str] = set() |
| 19 | 19 | ||
| 20 | def get_meta(self) -> Dict[str, Union[str, Dict]]: | 20 | def get_meta(self) -> Dict[str, Union[str, Dict]]: |
| 21 | try: | 21 | try: |
