Open liam-ly opened 3 years ago
The following file
# -*- coding: utf-8 -*- """Compatibility layer for optional functionality.""" def _tqdm(it, *_args, **_kwargs): # noqa return it try: from tqdm.auto import tqdm except ImportError: tqdm = _tqdm __all__ = ["tqdm"]
incorrectly obfuscates to
def R(it,*_args,**_kwargs): u=ImportError return it try: from tqdm.auto import tqdm except u: w=R __all__=["tqdm"] # Created by pyminifier (https://github.com/liftoff/pyminifier)
The exception renaming should be outside of the def R
def R
The following file
incorrectly obfuscates to
The exception renaming should be outside of the
def R