-
Notifications
You must be signed in to change notification settings - Fork 62
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
Syntax error in debug line #8
Comments
Good catch, thank you, fixed! (Should have been |
Any thoughts on the |
Ah, I missed that, sorry! I looked at it now. I think it should work in the latest release (1.0.4). Indeed, However, the helper function Also, Could you try the latest release (1.0.4), and if it still crashes, provide a short example for testing? |
This line:
pyan/pyan/analyzer.py
Line 612 in 3034dee
erroneously references
filenaame
, an attribute that does not exist. Additionally, the line above it mentionsvalues[0]
whenvalues
cannot be subscripted in some cases. I found success commenting this whole statement out - in fact, mymips_to_c
repository is a success story for your support of Python 3.6+ type hinting, so thank you for implementing that!The text was updated successfully, but these errors were encountered: