Update Python Port

Kevin Morris 2021-05-26 08:15:29 +00:00
parent 4e01c530f7
commit 5caaac5a3b

@ -112,7 +112,7 @@ source code
3. If not otherwise specified, code should maintain PEP-8 compliance in terms of code style 3. If not otherwise specified, code should maintain PEP-8 compliance in terms of code style
and spacing. `autopep8` can be used to automatically format your code and spacing. `autopep8` can be used to automatically format your code
4. All new Python code should be `isort`ed 4. All new Python code should be `isort`ed
5. SQLAlchemy ORM model attributes should be Capitalized if they are literal table columns or *forward references*, otherwise snake_cased for *backref references*s. 5. SQLAlchemy ORM model attributes should be Capitalized if they are literal table columns or *forward references*, otherwise snake_cased for *backref references*.
6. Use typed arguments as often as possible. We'd like to show users the types of arguments without relying on documentation, and this helps a ton with that. 6. Use typed arguments as often as possible. We'd like to show users the types of arguments without relying on documentation, and this helps a ton with that.
## Who, Where? ## Who, Where?