bt2c::Logger: remove unused cLevel() method
[babeltrace.git] / pyproject.toml
1 [tool.black]
2 include = '''
3 (
4 \.pyi?$
5 | \.py\.in$
6 )
7 '''
8 exclude = '''
9 (
10 src/bindings/python/bt2/build/
11 | src/bindings/python/bt2/setup\.py$
12 | src/bindings/python/bt2/bt2/native_bt\.py$
13 | src/bindings/python/bt2/bt2/version\.py$
14 | tests/utils/python/normand\.py$
15 | tests/utils/python/typing/typing\.py$
16 | tests/utils/python/tap
17
18 )
19 '''
20
21 [tool.isort]
22 profile = "black"
23 extend_skip_glob = [
24 "tests/utils/python/tap",
25 "tests/utils/python/normand.py",
26 "tests/utils/python/typing/typing.py",
27 ]
28 length_sort = true
This page took 0.030963 seconds and 5 git commands to generate.