diff --git a/uncompyle6/scanner.py b/uncompyle6/scanner.py index 64b335db..630fc84f 100644 --- a/uncompyle6/scanner.py +++ b/uncompyle6/scanner.py @@ -605,6 +605,10 @@ class Scanner(ABC): def get_scanner(version: Union[str, tuple], is_pypy=False, show_asm=None) -> Scanner: + """ + Import the right scanner module for ``version`` and return the Scanner class + in that module. + """ # If version is a string, turn that into the corresponding float. if isinstance(version, str): if version not in canonic_python_version: