(self, state, state_store, url_args, url_kwargs)
| 563 | PossibleFlowPosition.all_positions[self.url_name] = self |
| 564 | |
| 565 | def create_instance(self, state, state_store, url_args, url_kwargs): |
| 566 | return FlowPositionInstance(self.app_namespace, self.flow_namespace, self, state, |
| 567 | state_store, url_args, url_kwargs) |
| 568 | |
| 569 | def _url_name_from_components(self, components, include_app_namespace=True): |
| 570 | if self.flow_namespace is None: |
no test coverage detected