(args)
| 42 | |
| 43 | @staticmethod |
| 44 | def extract_class_from_args(args): |
| 45 | cls = args.copy().pop('class') |
| 46 | package, cls = cls.rsplit('.', 1) |
| 47 | module = importlib.import_module(package) |
| 48 | cls = getattr(module, cls) |
| 49 | return cls |
| 50 | |
| 51 | def load_all(self, **kwargs): |
| 52 | for name, state in self.states.items(): |
no outgoing calls
no test coverage detected