Fix find_pyproject_toml type hint (#1495)
This commit is contained in:
parent
4ccc8c86f5
commit
b2c13de490
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user