Skip to content

Commit

Permalink
update: Add CANONICAL to RoutePatternTypicality
Browse files Browse the repository at this point in the history
  • Loading branch information
idreyn committed Aug 17, 2023
1 parent 79cbf27 commit 9479985
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions mbta_gtfs_sqlite/models/route_patterns.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ class RoutePatternTypicality(Enum):
DEVIATION = "2"
HIGHLY_ATYPICAL = "3"
DIVERSION = "4"
CANONICAL = "5"


TRoutePatternTypicality = Literal[
Expand All @@ -23,6 +24,7 @@ class RoutePatternTypicality(Enum):
RoutePatternTypicality.DEVIATION,
RoutePatternTypicality.HIGHLY_ATYPICAL,
RoutePatternTypicality.DIVERSION,
RoutePatternTypicality.CANONICAL,
]


Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "mbta-gtfs-sqlite"
version = "1.0.0"
version = "1.0.1"
description = "Query the MBTA's static GTFS feeds using sqlite"
authors = ["Ian Reynolds <[email protected]>"]
packages = [{include = "mbta_gtfs_sqlite"}]
Expand Down

0 comments on commit 9479985

Please sign in to comment.