(self, *a, **ka)
| 486 | self.config = ConfigDict().load_dict(config, make_namespaces=True) |
| 487 | |
| 488 | def __call__(self, *a, **ka): |
| 489 | depr("Some APIs changed to return Route() instances instead of"\ |
| 490 | " callables. Make sure to use the Route.call method and not to"\ |
| 491 | " call Route instances directly.") #0.12 |
| 492 | return self.call(*a, **ka) |
| 493 | |
| 494 | @cached_property |
| 495 | def call(self): |