summaryrefslogtreecommitdiff
path: root/libmat2/video.py
diff options
context:
space:
mode:
authorjvoisin2018-10-23 16:32:28 +0200
committerjvoisin2018-10-23 16:32:28 +0200
commit9a81b3adfd21fcbc38c09b5d28cbd35791ba6004 (patch)
tree6dea1ab714616eea190091f95a2c68825170721d /libmat2/video.py
parentf1a071d460507fd1bb1721deafd2a8d9f88f5b05 (diff)
Improve type annotation coverage
Diffstat (limited to 'libmat2/video.py')
-rw-r--r--libmat2/video.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/libmat2/video.py b/libmat2/video.py
index b7ba0a0..85b5b2e 100644
--- a/libmat2/video.py
+++ b/libmat2/video.py
@@ -24,7 +24,7 @@ class AVIParser(exiftool.ExiftoolParser):
24 'SampleRate', 'AvgBytesPerSec', 'BitsPerSample', 24 'SampleRate', 'AvgBytesPerSec', 'BitsPerSample',
25 'Duration', 'ImageSize', 'Megapixels'} 25 'Duration', 'ImageSize', 'Megapixels'}
26 26
27 def remove_all(self): 27 def remove_all(self) -> bool:
28 cmd = [_get_ffmpeg_path(), 28 cmd = [_get_ffmpeg_path(),
29 '-i', self.filename, # input file 29 '-i', self.filename, # input file
30 '-y', # overwrite existing output file 30 '-y', # overwrite existing output file