From efc2d7ad3d2cedcd3d13dc8ddc767751a7819431 Mon Sep 17 00:00:00 2001 From: skshetry <18718008+skshetry@users.noreply.github.com> Date: Tue, 28 Mar 2023 14:30:33 +0545 Subject: [PATCH] remove unused type-ignore comment (#9258) --- dvc/repo/experiments/push.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/dvc/repo/experiments/push.py b/dvc/repo/experiments/push.py index aeeb56b817..27e25987d2 100644 --- a/dvc/repo/experiments/push.py +++ b/dvc/repo/experiments/push.py @@ -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