Creates a new route, based on the current route, with the specified overrided values
(self, **overrides)
| 111 | return self.where(map_params=map_params) |
| 112 | |
| 113 | def where(self, **overrides): |
| 114 | """Creates a new route, based on the current route, with the specified overrided values""" |
| 115 | route_data = self.route.copy() |
| 116 | route_data.update(overrides) |
| 117 | return self.__class__(**route_data) |
| 118 | |
| 119 | |
| 120 | class CLIRouter(Router): |
no outgoing calls