Skip to content

Commit

Permalink
Fix type error
Browse files Browse the repository at this point in the history
  • Loading branch information
fredrikaverpil committed Jul 6, 2022
1 parent b114fe2 commit b647c00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/poetry/vcs/git/backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ def _clone_submodules(cls, repo: Repo) -> None:
modules_config = repo_root.joinpath(".gitmodules")

if modules_config.exists():
config = ConfigFile.from_path(modules_config)
config = ConfigFile.from_path(str(modules_config))

url: bytes
path: bytes
Expand Down

0 comments on commit b647c00

Please sign in to comment.