Having duplicate files across modules is an anti-pattern.
We need to factor out common imports like:
- communications
- filter
- mocap
- etc
into their own modules, and import as needed. In this way we can update and test in one place, and have those changes propagate to the importing modules.
Having duplicate files across modules is an anti-pattern.
We need to factor out common imports like:
into their own modules, and import as needed. In this way we can update and test in one place, and have those changes propagate to the importing modules.