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
{{ message }}
This repository has been archived by the owner on May 21, 2020. It is now read-only.
I have some suggestion that you are very welcome to ignore if don't find them useful ;) BTW, It is really well documented 👍
Reduce parameters. If a class, method or functions take more than five parameters and most of the parameters have a reasonable default, it is better to encapsulate those parameters into a class or dictionary. Those classes and dictionaries can stored the default values in JSON or YAML files. Also, from Python 3.8 onwards you can you data classes
Remove deeply nested statements. There are some deeply nested statements like this that make the code really difficult to read. As stated above, those can be replaced by data classes and/or dictionaries.
..to be continued
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I have some suggestion that you are very welcome to ignore if don't find them useful ;) BTW, It is really well documented 👍
..to be continued
The text was updated successfully, but these errors were encountered: