-
-
Notifications
You must be signed in to change notification settings - Fork 611
New issue
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
AttributeError: module 'click' has no attribute 'FloatRangeecho' #636
Comments
Hi @chaoflow, thanks for the report. I was able to reproduce the issue by doing simply this:
I'm not sure what's going on. This can either be raised over to the
|
The culprit is a missing comma at the end of this line: https://github.com/pallets/click/blob/55682f6f5348f5220a557f89c3a796321a52aebf/click/__init__.py#L69 The line ends with string literal |
The 'FloatRange' string was incorrectly concatened with the 'echo' on line below producing 'FloatRangeecho', because there was no comma in between. This caused import errors when doing from click import * See e.g. jazzband/pip-tools#636
thx a lot! |
Describe the issue briefly here.
Environment Versions
Steps to replicate
Expected result
Display help message.
Actual result
The text was updated successfully, but these errors were encountered: