From 14993d0af42386f61b04c5951a22f8e24d1d5409 Mon Sep 17 00:00:00 2001 From: rocky Date: Fri, 12 Jul 2024 14:48:07 -0400 Subject: [PATCH] Add one more docstring --- uncompyle6/scanner.py | 4 ++++ 1 file changed, 4 insertions(+) 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: