X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/7567cdf3b4f32d4fb12bd5ca0da838f7ff252cfc..e3000ace2fd1fcb1c181bb7a8285f1f976bcbdc7:/src/black/files.py diff --git a/src/black/files.py b/src/black/files.py index b9cefd3..427ad66 100644 --- a/src/black/files.py +++ b/src/black/files.py @@ -18,7 +18,7 @@ from typing import ( ) from pathspec import PathSpec -import toml +import tomli from black.output import err from black.report import Report @@ -89,9 +89,10 @@ def find_pyproject_toml(path_search_start: Tuple[str, ...]) -> Optional[str]: def parse_pyproject_toml(path_config: str) -> Dict[str, Any]: """Parse a pyproject toml file, pulling out relevant parts for Black - If parsing fails, will raise a toml.TomlDecodeError + If parsing fails, will raise a tomli.TOMLDecodeError """ - pyproject_toml = toml.load(path_config) + with open(path_config, encoding="utf8") as f: + pyproject_toml = tomli.load(f) config = pyproject_toml.get("tool", {}).get("black", {}) return {k.replace("--", "").replace("-", "_"): v for k, v in config.items()}