From bcda3b8fd0c1e6991d2e7687be9bb924c37a8d0b Mon Sep 17 00:00:00 2001 From: kevr Date: Wed, 12 May 2021 07:07:19 +0000 Subject: [PATCH] Update Python Port --- Python-Port.md | 1 + 1 file changed, 1 insertion(+) diff --git a/Python-Port.md b/Python-Port.md index c4790b2..284377d 100644 --- a/Python-Port.md +++ b/Python-Port.md @@ -113,6 +113,7 @@ source code and spacing. `autopep8` can be used to automatically format your code 4. All new Python code should be `isort`ed 5. SQLAlchemy ORM model attributes should be Capitalized if they are literal table columns, otherwise snake_cased in accordance with PEP-8 guidelines +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?