You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Get rid of actions.py and the unwanted __init__.py files
Separate files on function and reusability
Import only needed data/classes/methods so it looks much cleaner to what is used
Separate independent functions instead of static class methods (so they can be imported)
Simplify TitleItem, or replace it with a well-designed dictionary
I am very skeptical to forced object oriented programming, it's nice where it improves readability, but sometimes putting stuff in classes together because you have to overcomplicates the design (and Python does not force you to).
The text was updated successfully, but these errors were encountered:
Describe the bug
A few thoughts on code structure:
resources/lib
I would like to propose:
./vrtnu/
) with potentially 10 to 15 filesactions.py
and the unwanted__init__.py
filesI am very skeptical to forced object oriented programming, it's nice where it improves readability, but sometimes putting stuff in classes together because you have to overcomplicates the design (and Python does not force you to).
The text was updated successfully, but these errors were encountered: