📝 Rule about f-strings added to project guidelines

This commit is contained in:
NikolajDanger
2021-04-03 18:14:20 +02:00
parent 8369ab0000
commit edcf00039a

View File

@ -44,6 +44,7 @@ Comments, strings, variable names, class names, docstrings, as well as all other
## Code Style
All the Python code should follow the [PEP 8 guidelines](https://www.python.org/dev/peps/pep-0008/), with the following differences:
+ Variable and function names must be camelCase, and must fully consist of either full words or common/understandable abbreviations.
+ Use f-strings when applicable.
### Documentation
+ Comment lines should not exede 72 characters.