Returns the key if it has not been handled, or None.
(self, context: str, key: str)
| 155 | return single + multi |
| 156 | |
| 157 | def handle(self, context: str, key: str) -> str | None: |
| 158 | """ |
| 159 | Returns the key if it has not been handled, or None. |
| 160 | """ |
| 161 | b = self.get(context, key) or self.get("global", key) |
| 162 | if b: |
| 163 | self.executor(b.command) |
| 164 | return None |
| 165 | return key |
| 166 | |
| 167 | def handle_only(self, context: str, key: str) -> str | None: |
| 168 | """ |