Correct type annotation on decompile()

Fixes #391
This commit is contained in:
rocky
2022-04-21 20:10:33 -04:00
parent f3ac70d0ea
commit 464801bcb3

View File

@@ -46,7 +46,7 @@ def _get_outstream(outfile: str) -> Any:
def decompile(
co,
bytecode_version: str = PYTHON_VERSION_TRIPLE,
bytecode_version: Tuple[int] = PYTHON_VERSION_TRIPLE,
out=sys.stdout,
showasm=None,
showast={},