1
0
mirror of synced 2026-01-15 06:06:30 -05:00
Files
airbyte/tools/python/.flake8
Eugene Kulak 2a015a8408 SAT: Introduce new way to compare records based on PK #9718 (#9768)
* fix asserts

Co-authored-by: Eugene Kulak <kulak.eugene@gmail.com>
2022-01-27 17:12:46 +02:00

15 lines
474 B
INI

[flake8]
exclude =
.venv,
models # generated protocol models
airbyte-cdk/python/airbyte_cdk/models/__init__.py
.eggs # python libraries"
.tox
build
airbyte_api_client # generated api client in octavia-cli
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)