327 B
327 B
Code Style
General
- Prepend all control flow keywords with an empty line.
SQL
- Always declare aliases with
AS
construct. - No star selects allowed.
Python
- Prefix all
TypedDict
declarations withTD
.
Otherwise it's easy to mix them up wtih actual classes and then doisinstance()
accidentally.