We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e73c3e6 commit b16392fCopy full SHA for b16392f
httpie/manager/__main__.py
@@ -52,7 +52,6 @@ def program():
52
try:
53
exit_status = main()
54
except KeyboardInterrupt:
55
- from httpie.status import ExitStatus
56
exit_status = ExitStatus.ERROR_CTRL_C
57
58
return exit_status
httpie/manager/compat.py
@@ -43,7 +43,6 @@ def _check_pip_version(pip_location: Optional[str]) -> bool:
43
44
45
def _run_pip_subprocess(pip_executable: List[str], args: List[str]) -> bytes:
46
- import subprocess
47
48
cmd = [*pip_executable, *args]
49
0 commit comments