Skip to content

Commit

Permalink
Remove redundant imports (#1466)
Browse files Browse the repository at this point in the history
  • Loading branch information
nishantsikarwar authored Jan 15, 2023
1 parent e73c3e6 commit b16392f
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion httpie/manager/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ def program():
try:
exit_status = main()
except KeyboardInterrupt:
from httpie.status import ExitStatus
exit_status = ExitStatus.ERROR_CTRL_C

return exit_status
Expand Down
1 change: 0 additions & 1 deletion httpie/manager/compat.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ def _check_pip_version(pip_location: Optional[str]) -> bool:


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

cmd = [*pip_executable, *args]
try:
Expand Down

0 comments on commit b16392f

Please sign in to comment.