Skip to content

Commit b16392f

Browse files
Remove redundant imports (#1466)
1 parent e73c3e6 commit b16392f

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

httpie/manager/__main__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ def program():
5252
try:
5353
exit_status = main()
5454
except KeyboardInterrupt:
55-
from httpie.status import ExitStatus
5655
exit_status = ExitStatus.ERROR_CTRL_C
5756

5857
return exit_status

httpie/manager/compat.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ def _check_pip_version(pip_location: Optional[str]) -> bool:
4343

4444

4545
def _run_pip_subprocess(pip_executable: List[str], args: List[str]) -> bytes:
46-
import subprocess
4746

4847
cmd = [*pip_executable, *args]
4948
try:

0 commit comments

Comments
 (0)