This repository was archived by the owner on Jan 9, 2023. It is now read-only.
This repository was archived by the owner on Jan 9, 2023. It is now read-only.
Eliminate non-unique file names for python modules #353
Open
Description
There are many python modules which use the same file and parent directory names, such as common/utils.py. This has already been seen to cause accidental issues as python versions are updated, see #351. This could happen again. In order to prevent that and to avoid such issues in the future, we should avoid using file names that are not unique across different submodules in the project.
AC
- Survey the python files and rename commonly named modules such as utils.py to something more appropriate, such as cutter_utils.py
- Update other python files that import those modules to the new name
- Update the server install script to remove the old python .py and .pyc files if they exist in the target directories