Skip to content

Commit

Permalink
zap unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
idreyn committed Sep 2, 2024
1 parent 932d6da commit 7abe9c5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
1 change: 0 additions & 1 deletion ingestor/chalicelib/gtfs/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
Trip,
CalendarServiceExceptionType,
ServiceDayAvailability,
CalendarService,
)

if TYPE_CHECKING:
Expand Down
2 changes: 1 addition & 1 deletion ingestor/chalicelib/service_ridership_dashboard/gtfs.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from typing import Dict
from tempfile import TemporaryDirectory
from mbta_gtfs_sqlite import MbtaGtfsArchive
from mbta_gtfs_sqlite.models import Route, Line, RouteType
from mbta_gtfs_sqlite.models import Route, Line

from ..gtfs.utils import bucket_by, index_by

Expand Down
5 changes: 2 additions & 3 deletions ingestor/chalicelib/service_ridership_dashboard/ridership.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
from dataclasses import dataclass
from datetime import date, timedelta
from datetime import date
from tqdm import tqdm
from math import isnan

from .queries import query_ridership, RidershipRow
from .util import date_from_string, date_range
from .util import date_from_string


@dataclass
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from typing import TypeVar, Callable, Optional, Dict
from typing import TypeVar, Callable, Optional
from datetime import date, timedelta

from .util import date_range
Expand Down

0 comments on commit 7abe9c5

Please sign in to comment.