Replies: 1 comment
-
|
I agree, it is a big mess. Its not even plain "spaghetti" code, but a strange mix of styles :) If you are able to take a stab at it, that would be very welcome! Here are some of my opinions
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I want to talk about main.py file and main function in general.
Currently this function include everything it do in one big function, and has very high cognitive complexity. This mean that any developer, who want to make updates need to understand whole function, find all variables definitions and redefinitions that happen during execution etc. This looks completely non-pythonic, not dry, not srp.
So I have two questions:
Beta Was this translation helpful? Give feedback.
All reactions