Skip to content

Remove unused imports#97

Open
arpitjain099 wants to merge 1 commit into
dbetchkal:mainfrom
arpitjain099:fix/unused-imports
Open

Remove unused imports#97
arpitjain099 wants to merge 1 commit into
dbetchkal:mainfrom
arpitjain099:fix/unused-imports

Conversation

@arpitjain099

@arpitjain099 arpitjain099 commented Jul 9, 2026

Copy link
Copy Markdown
Contributor

Cleans up imports that are no longer referenced in the codebase. Optional to merge.

  • active_space_generator.py: Iterable, List (typing), and Point (shapely) are imported but never used
  • run_audible_transits.py: sqlalchemy is imported at the top level but never referenced. coords_to_utm is imported from computation but never called anywhere in the file.
  • get_geographic_metrics.py: AudibleTransitsADSB and AudibleTransitsGPS are imported but only AudibleTransits and init_audible_transits are actually used
  • viz.py: sys is imported but never used

Caught these while reading through the codebase. No behavioral changes.

- active_space_generator.py: drop Iterable, List (from typing) and
  Point (from shapely) - none referenced outside the import line
- run_audible_transits.py: drop sqlalchemy (never used) and
  coords_to_utm (imported but never called)
- get_geographic_metrics.py: drop AudibleTransitsADSB and
  AudibleTransitsGPS (only AudibleTransits and init_audible_transits
  are used)
- viz.py: drop sys (never used)

Signed-off-by: arpitjain099 <arpitjain099@gmail.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant