(e: str | events.Event)
| 2238 | |
| 2239 | |
| 2240 | def is_simple_event(e: str | events.Event) -> bool: |
| 2241 | if isinstance(e, events.Event): |
| 2242 | return False |
| 2243 | return ( |
| 2244 | e in ("<Ctrl-j>", "<Ctrl-m>", "<PADENTER>", "\n", "\r", "<SPACE>") |
| 2245 | or len(e) <= 1 |
| 2246 | ) |
no outgoing calls
no test coverage detected