import *
Sorry, I should have caught this sooner: import *
is considered very poor form in Python. https://pep8.org/
Use import utilities as u
if you mind all the typing, or from utilities import (func_1, func_2,...)
.
Sorry, I should have caught this sooner: import *
is considered very poor form in Python. https://pep8.org/
Use import utilities as u
if you mind all the typing, or from utilities import (func_1, func_2,...)
.
created merge request !15 (merged) to address this issue
mentioned in merge request !15 (merged)
closed via commit e2b67560