Skip to content

Commit 8ed52f9

Browse files
committed
!squash mypy
1 parent d248475 commit 8ed52f9

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

libvcs/projects/git.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,11 @@ def __init__(
230230
)
231231
elif isinstance(remote_url, dict):
232232
self._remotes[remote_name] = GitRemote(
233-
**{**remote_url, "name": remote_name}
233+
**{
234+
"fetch_url": remote_url["fetch_url"],
235+
"push_url": remote_url["push_url"],
236+
"name": remote_name,
237+
}
234238
)
235239
elif isinstance(remote_url, GitRemote):
236240
self._remotes[remote_name] = remote_url

0 commit comments

Comments
 (0)