mirror of
https://github.com/micahqcade/custom_vesync.git
synced 2025-02-11 17:49:00 +01:00
17 lines
362 B
TOML
17 lines
362 B
TOML
|
[tool.black]
|
||
|
target-version = ["py38"]
|
||
|
exclude = 'generated'
|
||
|
|
||
|
[tool.isort]
|
||
|
# https://github.com/PyCQA/isort/wiki/isort-Settings
|
||
|
profile = "black"
|
||
|
# will group `import x` and `from x import` of the same module.
|
||
|
force_sort_within_sections = true
|
||
|
known_first_party = [
|
||
|
"homeassistant",
|
||
|
"tests",
|
||
|
]
|
||
|
forced_separate = [
|
||
|
"tests",
|
||
|
]
|
||
|
combine_as_imports = true
|