-
-
Notifications
You must be signed in to change notification settings - Fork 13
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
setup() / settings() disentanglement feature edge case? #40
Comments
Hmmm, I should fix this, because it breaks the illusion of As a workaround, you can switch the order of the I don't think this will be a hard fix. Right now you can put |
This fix seems to work. Global statements that precede the call to |
The hard part here isn't dealing with the
This is the error message I get:
Which points to the correct line number. I think I have everything working now. I also add sensible |
Done! On to the next bug! |
Nice work, @hx2A! |
I understand you might choose not to tackle this case... but it is a common idiom to to put
global
statements at the start of functions, and this seems to break the rule of havingsize()
as the first thing...(As I know what is going on I had no trouble reordering...)
The text was updated successfully, but these errors were encountered: