unimatrix
unimatrix copied to clipboard
Invalid Escape Sequence
Not sure if this matters (because it still seems to run well), but when running, this is dumped to the terminal:
/usr/local/bin/unimatrix:32: SyntaxWarning: invalid escape sequence '\;'
help_msg = '''
/usr/local/bin/unimatrix:231: SyntaxWarning: invalid escape sequence '\;'
'`-=~!@#$%^&*()_+[]{}|\;\':",./<>?"',
/usr/local/bin/unimatrix:237: SyntaxWarning: invalid escape sequence '\;'
'S': '`-=~!@#$%^&*()_+[]{}|\;\':",./<>?"',
check that you're not running an older version of unimatrix
. I had the same error until I noticed I had installed it twice, the latest was through pipx
, which was the correct version without any error.
EDIT: it seems the error occurs due to the version of python (3.11 runs correctly for me)
I'm also having the same issue:
/usr/bin/unimatrix:32: SyntaxWarning: invalid escape sequence '\;'
help_msg = '''
/usr/bin/unimatrix:231: SyntaxWarning: invalid escape sequence '\;'
'`-=~!@#$%^&*()_+[]{}|\;\':",./<>?"',
/usr/bin/unimatrix:237: SyntaxWarning: invalid escape sequence '\;'
'S': '`-=~!@#$%^&*()_+[]{}|\;\':",./<>?"',
I ran into this with another application running under Python v3.12.x. Removing the backslash escaping the character should fix it.
Should be fixed here: https://github.com/will8211/unimatrix/pull/60