This commit is contained in:
John Morrison 2022-04-18 10:39:19 +01:00 committed by xs5871
parent 1700aff408
commit 4d297e6ab2
3 changed files with 4 additions and 4 deletions

View File

@ -78,7 +78,7 @@ documented in `pyproject.toml`).
## Tests ## Tests
Unit tests within the `tests` folder mock various CicuitPython modules to allow Unit tests within the `tests` folder mock various CircuitPython modules to allow
them to be executed in a desktop development environment. them to be executed in a desktop development environment.
Execute tests using the command `python -m unittest`. Execute tests using the command `python -m unittest`.
@ -86,7 +86,7 @@ Execute tests using the command `python -m unittest`.
## License, Copyright, and Legal ## License, Copyright, and Legal
All software in this repository is licensed under the [GNU Public License, All software in this repository is licensed under the [GNU Public License,
verison 3](https://tldrlegal.com/license/gnu-general-public-license-v3-(gpl-3)). version 3](https://tldrlegal.com/license/gnu-general-public-license-v3-(gpl-3)).
All documentation and hardware designs are licensed under the [Creative Commons All documentation and hardware designs are licensed under the [Creative Commons
Attribution-ShareAlike 4.0](https://creativecommons.org/licenses/by-sa/4.0/) Attribution-ShareAlike 4.0](https://creativecommons.org/licenses/by-sa/4.0/)
license. Contributions to this repository must use these licenses unless license. Contributions to this repository must use these licenses unless

View File

@ -368,7 +368,7 @@ class KeyAttrDict(AttrDict):
return self.__getattr__(key, depth=depth + 1) return self.__getattr__(key, depth=depth + 1)
# Global state, will be filled in througout this file, and # Global state, will be filled in throughout this file, and
# anywhere the user creates custom keys # anywhere the user creates custom keys
KC = KeyAttrDict() KC = KeyAttrDict()

View File

@ -3,7 +3,7 @@
# https://github.com/psf/black/issues/594 # https://github.com/psf/black/issues/594
skip-string-normalization = true skip-string-normalization = true
target = "py36" target = "py36"
# explicitly exculde user_keymaps from black formatting rules # explicitly exclude user_keymaps from black formatting rules
# because a visually-appealing keymap list will be flattened # because a visually-appealing keymap list will be flattened
# by black into a much harder to understand format # by black into a much harder to understand format
exclude = ''' exclude = '''