diff options
| author | jvoisin | 2021-11-21 11:02:22 +0100 |
|---|---|---|
| committer | jvoisin | 2021-11-21 11:02:22 +0100 |
| commit | fb7440ab5ddaffe52d1f765c59fecd2c0e3aa944 (patch) | |
| tree | 28602022bebba5f084f09d808000c9f6c1f023bb /libmat2/video.py | |
| parent | 0c91ac7367ba3a859a7ba08d4ca586538748a5c4 (diff) | |
Please a bit the CI
Diffstat (limited to '')
| -rw-r--r-- | libmat2/video.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libmat2/video.py b/libmat2/video.py index b4a3232..ae9e463 100644 --- a/libmat2/video.py +++ b/libmat2/video.py | |||
| @@ -50,7 +50,7 @@ class AbstractFFmpegParser(exiftool.ExiftoolParser): | |||
| 50 | 50 | ||
| 51 | ret = dict() # type: Dict[str, Union[str, dict]] | 51 | ret = dict() # type: Dict[str, Union[str, dict]] |
| 52 | for key, value in meta.items(): | 52 | for key, value in meta.items(): |
| 53 | if key in self.meta_key_value_allowlist.keys(): | 53 | if key in self.meta_key_value_allowlist: |
| 54 | if value == self.meta_key_value_allowlist[key]: | 54 | if value == self.meta_key_value_allowlist[key]: |
| 55 | continue | 55 | continue |
| 56 | ret[key] = value | 56 | ret[key] = value |
