Skip to content

Commit 8fbd2c4

Browse files
committed
Fix an indentation issue
1 parent 3c5ba46 commit 8fbd2c4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pip_check_reqs/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from packaging.utils import canonicalize_name
99
# Between different versions of pip the location of PipSession has changed.
1010
try:
11-
from pip._internal.network.session import PipSession
11+
from pip._internal.network.session import PipSession
1212
except ImportError: # pragma: no cover
1313
from pip._internal.download import PipSession
1414
from pip._internal.req.req_file import parse_requirements

pip_check_reqs/find_missing_reqs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from pip._internal.commands.show import search_packages_info
99
# Between different versions of pip the location of PipSession has changed.
1010
try:
11-
from pip._internal.network.session import PipSession
11+
from pip._internal.network.session import PipSession
1212
except ImportError: # pragma: no cover
1313
from pip._internal.download import PipSession
1414
from pip._internal.req.req_file import parse_requirements

0 commit comments

Comments
 (0)