(self, *args, **kwargs)
| 113 | list.remove(self, thing) |
| 114 | |
| 115 | def sort(self, *args, **kwargs): |
| 116 | # We need it here to prevent external users from accidentally sorting the list as alot of |
| 117 | # external logic relies on keeping modules at their places |
| 118 | raise NotImplementedError |
| 119 | |
| 120 | |
| 121 | class HandledModuleList(HandledList): |
no outgoing calls
no test coverage detected