Skip to content

Commit

Permalink
remove unused type-ignore comment (#9258)
Browse files Browse the repository at this point in the history
  • Loading branch information
skshetry authored and daavoo committed Mar 28, 2023
1 parent 5bc2706 commit 2b4fdbc
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions dvc/repo/experiments/push.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,7 @@ def notify_refs_to_studio(repo: "Repo", git_remote: str, **refs: List[str]) -> N

_, repo_url = get_remote_repo(repo.scm.dulwich.repo, git_remote)
studio_url = config.get("studio_url")
studio.notify_refs(
repo_url,
token,
studio_url=studio_url,
**refs, # type: ignore[arg-type]
)
studio.notify_refs(repo_url, token, studio_url=studio_url, **refs)


@locked
Expand Down

0 comments on commit 2b4fdbc

Please sign in to comment.