Skip to content

Commit 46d0326

Browse files
committed
Add type hint to test
1 parent f9914a0 commit 46d0326

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/unit/test_expid.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -519,5 +519,5 @@ def test_remote_repo_operational(generate_new_experiment: str, create_autosubmit
519519
("https://github.com/user/repo", False), # missing .git
520520
]
521521
)
522-
def test_valid_git_repo_check(git_repo, expected):
522+
def test_valid_git_repo_check(git_repo: str, expected: str) -> None:
523523
assert AutosubmitGit.is_git_repo(git_repo) == expected

0 commit comments

Comments
 (0)