We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0677e01 commit 5f3d981Copy full SHA for 5f3d981
bin/input-remapper-control
@@ -310,9 +310,9 @@ def main(options: Options) -> None:
310
return
311
312
if options.command is not None:
313
- if options.command in Internals:
+ if options.command in [command.value for command in Internals]:
314
input_remapper_control.internals(options.command, options.debug)
315
- elif options.command in Commands:
+ elif options.command in [command.value for command in Commands]:
316
from inputremapper.daemon import Daemon
317
318
daemon = Daemon.connect(fallback=False)
0 commit comments