TanGentleman / KeyMaster

A comprehensive toolkit for python classes and easy to use scripts for logging, analyzing, and simulating keystrokes.
MIT License
1 stars 0 forks source link

Unwrapped unicode characters raise ValueError in Keystroke() #31

Closed TanGentleman closed 10 months ago

TanGentleman commented 10 months ago

key = Keystroke("¬", None) uses a deprecated unwrapped format but should be allowed. Unicode chars can be fixed in utils/validation.py:99. I don't want to add auto-wrapping just yet, so I'll change the logic there. Especially since key = Keystroke("z", 0.0001) is valid in the current implementation.