We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 289a60e commit cee220cCopy full SHA for cee220c
commitizen/config/__init__.py
@@ -15,7 +15,7 @@ def read_cfg(filepath: str | None = None) -> BaseConfig:
15
conf = BaseConfig()
16
17
if filepath is not None:
18
- cfg_paths = (_ for _ in (Path(filepath),))
+ cfg_paths = (path for path in (Path(filepath),))
19
else:
20
git_project_root = git.find_git_project_root()
21
cfg_search_paths = [Path(".")]
0 commit comments