From: Ralf Schmitt Date: Mon, 15 Jun 2020 15:56:16 +0000 (+0200) Subject: Fix find_pyproject_toml type hint (#1495) X-Git-Url: https://git.madduck.net/etc/vim.git/commitdiff_plain/b2c13de4906411ff0b3e20ec5a61f5803a660119?hp=4ccc8c86f5081990000c4dc09868d0bf040fb484 Fix find_pyproject_toml type hint (#1495) --- diff --git a/src/black/__init__.py b/src/black/__init__.py index 886d9c2..b32197a 100644 --- a/src/black/__init__.py +++ b/src/black/__init__.py @@ -267,7 +267,7 @@ def supports_feature(target_versions: Set[TargetVersion], feature: Feature) -> b return all(feature in VERSION_TO_FEATURES[version] for version in target_versions) -def find_pyproject_toml(path_search_start: str) -> Optional[str]: +def find_pyproject_toml(path_search_start: Iterable[str]) -> Optional[str]: """Find the absolute filepath to a pyproject.toml if it exists""" path_project_root = find_project_root(path_search_start) path_pyproject_toml = path_project_root / "pyproject.toml"