1[tool.black]
2include = '\.pyi?$'
3line-length = 119
4target-version = ["py38", "py39", "py310", "py311"]
5skip-string-normalization = true
6
7[tool.isort]
8src_paths = ["."]
9profile = "black"
10line_length = 119
11no_sections = true
12lines_between_types = 1
13combine_as_imports = true
14