flows: implement planner, start new executor

This commit is contained in:
Jens Langhammer
2020-05-08 14:33:14 +02:00
parent 97b5d120f8
commit 114bb1b0bd
15 changed files with 202 additions and 9 deletions

View File

@ -164,5 +164,5 @@ class SAMLPropertyMapping(PropertyMapping):
def get_provider_choices():
"""Return tuple of class_path, class name of all providers."""
return [
(class_to_path(x), x.__name__) for x in Processor.__dict__["__subclasses__"]()
(class_to_path(x), x.__name__) for x in getattr(Processor, "__subclasses__")()
]