-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding polygons_filter #146
Conversation
@@ -76,7 +78,6 @@ class TimeMapRequest(TravelTimeRequest[TimeMapResponse]): | |||
arrival_searches: List[ArrivalSearch] | |||
unions: List[Union] | |||
intersections: List[Intersection] | |||
snapping: Optional[Snapping] = None |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is a useless snapping param, has no references. Normal snapping params are on the ArrivalSearch and DepartureSearch classes, I think I added this one by accident
arrival_time_period="weekday_morning", # TODO: make customizable with enum / literal | ||
arrival_time_period="weekday_morning", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added these comments in a previous PR, but I didn't notice, that "weekday_morning" is the only possible period, according to docs. Removing the TODOs
No description provided.