Skip to content

Commit e0926fd

Browse files
committed
Move imports to top
1 parent f8c06bb commit e0926fd

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

tests/test_git_vcs.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,11 @@
1010
import pytest
1111

1212
from dfetch.util.cmdline import SubprocessCommandError
13-
from dfetch.vcs.git import GitLocalRepo, GitRemote
13+
from dfetch.vcs.git import (
14+
GitLocalRepo,
15+
GitRemote,
16+
_build_git_ssh_command,
17+
)
1418

1519

1620
@pytest.mark.parametrize(
@@ -112,9 +116,6 @@ def test_ls_remote():
112116
assert info == expected
113117

114118

115-
from dfetch.vcs.git import SubprocessCommandError, _build_git_ssh_command
116-
117-
118119
@pytest.mark.parametrize(
119120
"name, env_ssh, git_config_ssh, expected",
120121
[

0 commit comments

Comments
 (0)