1
0
mirror of synced 2026-01-05 21:02:13 -05:00

Python Developer Experience (#684)

* add symlinks for intellij includes

* add python support for exchangerate

* add python support for other modules

* get working across all projects

* add pydantic deps

* revert testing code

* mypy

* use python 3.7 in github actions

* remove unused envs plugin

* increase line length

* increase line length to 140 (run formatting)

* don't ignore most init.py

* does this happen to work on github actions?

* try to fix generation

* try to have GA chown

* exclude re-generation
This commit is contained in:
Jared Rhizor
2020-10-23 12:43:18 -07:00
committed by GitHub
parent 1372b3f76b
commit b34d559df3
55 changed files with 351 additions and 246 deletions

9
tools/python/.flake8 Normal file
View File

@@ -0,0 +1,9 @@
[flake8]
exclude =
.venv,
models # generated protocol models
extend-ignore =
E203, # whitespace before ':' (conflicts with Black)
E231, # Bad trailing comma (conflicts with Black)
E501, # line too long (conflicts with Black)
W503, # line break before binary operator (conflicts with Black)