icefall/pyproject.toml
Zengwei Yao 08473a17aa
Modify init (#301)
* update icefall/__init__.py to import more common functions.

* update icefall/__init__.py

* make imports style consistent.

* exclude black check for icefall/__init__.py in pyproject.toml.
2022-04-10 23:29:28 +08:00

15 lines
184 B
TOML

[tool.isort]
profile = "black"
skip = ["icefall/__init__.py"]
[tool.black]
line-length = 80
exclude = '''
/(
\.git
| \.github
)/
| make_kn_lm.py
| icefall\/__init__\.py
'''