-
Notifications
You must be signed in to change notification settings - Fork 0
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
Re-organize project #11
Comments
The project's over-usage of globals makes the code messy and hard to organize. Figuring out what to do with these would be a good next step to making the project cleaner. |
agreed |
The Python global statement is supposed to be used sparingly if ever (it's useful in a few situations involving multithreading). This thread has some good info on them. |
Most of the code is within pyRunner.py, which is way too big. This StackOverflow page has some good info about organizing Python projects: http://stackoverflow.com/questions/391879/organising-my-python-project (note: 1 class per file is not the way to do it)
The text was updated successfully, but these errors were encountered: