| 1131 | |
| 1132 | |
| 1133 | class MySubclass(Task): |
| 1134 | __slots__ = ("custom_kwarg_only",) |
| 1135 | |
| 1136 | def __init__(self, key, func, /, *args, custom_kwarg_only, **kwargs): |
| 1137 | self.custom_kwarg_only = custom_kwarg_only |
| 1138 | super().__init__(key, func, *args, **kwargs) |
| 1139 | |
| 1140 | |
| 1141 | def test_substitute_subclasses(): |
no outgoing calls