We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
def ruleset(self, value:str) ->None: if True: def write() ->str: return 'update'
returns
def ruleset(self,value): if True: def A()->str:return'update'
expected
def ruleset(self,value): if True: def A():return'update'
The text was updated successfully, but these errors were encountered:
Hi @wrohdewald, what version of python-minifier are you using and with what options? With 2.9.0 I do get:
Sorry, something went wrong.
Python 3.11.2 on Debian Bookworm, and
wrpc:/usr/local/lib/python3.11/dist-packages/python_minifier# pip3 list | grep mini python-minifier 2.9.0
No branches or pull requests
returns
expected
The text was updated successfully, but these errors were encountered: