-
Notifications
You must be signed in to change notification settings - Fork 57
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
import pyupset as pyu #13
Comments
Same error here:
|
Hi I get the same error. Is there any fix or workaround? Thanks! |
Looks like it's a Python 2 issue related to having *args in the function before the remaining default arguments. Two solutions:
|
The fix above works in Python 2.7, with two changes:
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Traceback (most recent call last): File "C:\MyWork\upset\upsetxmplgithub.py", line 1, in <module> import pyupset as pyu File "C:\Python27\lib\site-packages\pyupset\__init__.py", line 2, in <module> from .visualisation import plot File "C:\Python27\lib\site-packages\pyupset\visualisation.py", line 12 def plot(data_dict,*, unique_keys=None, sort_by='size', inters_size_bounds=(0, np.inf), ^ SyntaxError: invalid syntax
The text was updated successfully, but these errors were encountered: