We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
...\\site-packages\\plover_regenpfeifer\\dictionaries\\r
The dictionary name is split into its individual letters.
Assumption: this in system.py should be a list instead of a tuple:
system.py
DEFAULT_DICTIONARIES = ('regenpfeifer_main.json')
The text was updated successfully, but these errors were encountered:
('foo') is actually identical to 'foo'. If you want to force it into a tuple, it needs to be ('foo',).
('foo')
'foo'
('foo',)
Sorry, something went wrong.
Thanks a lot @jast, your suggestion was the way to go. First I wanted to make a list out of it but this needs to be a tuple.
The fix is part of v1.1.1 (and I had to create v1.1.2 because I burned v1.1.1 for some tests a while ago).
No branches or pull requests
The dictionary name is split into its individual letters.
Assumption: this in
system.py
should be a list instead of a tuple:The text was updated successfully, but these errors were encountered: