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,...).