Skip to content

Commit

Permalink
Update config_flow.py
Browse files Browse the repository at this point in the history
  • Loading branch information
vingerha authored Nov 6, 2023
1 parent d196d1a commit 9b3e7de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/gtfs2/config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ async def async_step_stops(self, user_input: dict | None = None) -> FlowResult:
vol.Optional("offset", default=0): int,
vol.Required("refresh_interval", default=15): int,
vol.Required("include_tomorrow"): vol.In(
{false: "No", true: "Yes"}
{False: "No", True: "Yes"}
),
},
),
Expand Down

0 comments on commit 9b3e7de

Please sign in to comment.