CDCgov / cfa-abc-calibration

Apache License 2.0
1 stars 0 forks source link

Required SimulationBundle class to be imported outside `__init__.py` #13

Closed KOVALW closed 3 days ago

KOVALW commented 3 days ago

Overview

Pre-commit throws errors for unused imports. The __init__.py typically imports classes from modules for use when the package is loaded in other projects, but doesn't used the classes within the script itself. There is a conflict between these two preferences, and we will side with pre-commit. We will therefore need to call the SimulationBundle class in scripts.

Changes

Removed the call to import SimulationBundle from .abc_classes in the __init__.py script of the package. Made the import of SimulationBundle in the model test script more explicit as a separate line of code