(self, graph, **kwargs)
| 61 | pass |
| 62 | |
| 63 | def call(self, graph, **kwargs): |
| 64 | app_assets = load_app(gar=garfile.read_bytes(), algo=module_name) |
| 65 | return app_assets(graph, **kwargs) |
| 66 | |
| 67 | setattr(algo, "__decorated__", True) # can't decorate on a decorated class |
| 68 | setattr(algo, "_gar", garfile.read_bytes().getvalue()) |
nothing calls this directly
no test coverage detected