(self)
| 902 | super().__init__() |
| 903 | |
| 904 | def enable(self): |
| 905 | self.old_prefix = get_script_prefix() |
| 906 | set_script_prefix(self.prefix) |
| 907 | |
| 908 | def disable(self): |
| 909 | set_script_prefix(self.old_prefix) |
nothing calls this directly
no test coverage detected