File tree Expand file tree Collapse file tree 4 files changed +4
-126
lines changed
Expand file tree Collapse file tree 4 files changed +4
-126
lines changed Original file line number Diff line number Diff line change 1+ from __future__ import annotations
2+
13import argparse
24
35
4- def main ():
6+ def main () -> None :
57 parser = argparse .ArgumentParser ()
68 parser .add_argument ("--codecs" , action = "store_true" )
79 parser .add_argument ("--version" , action = "store_true" )
@@ -13,7 +15,7 @@ def main():
1315
1416 print (f"PyAV v{ av .__version__ } " )
1517
16- by_config = {}
18+ by_config : dict = {}
1719 for libname , config in sorted (av ._core .library_meta .items ()):
1820 version = config ["version" ]
1921 if version [0 ] >= 0 :
Original file line number Diff line number Diff line change @@ -11,7 +11,6 @@ from av.error cimport err_check
1111from av.packet cimport Packet
1212from av.utils cimport avrational_to_fraction, to_avrational
1313
14- from av.deprecation import AVDeprecationWarning
1514from av.dictionary import Dictionary
1615
1716
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments