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 d1b4fa6 commit bc25d3cCopy full SHA for bc25d3c
pipenv/vendor/pipdeptree/__main__.py
@@ -2,9 +2,16 @@
2
3
from __future__ import annotations
4
5
+import os
6
import sys
7
from typing import Sequence
8
9
+pardir = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
10
+# for finding pipdeptree itself
11
+sys.path.append(pardir)
12
+# for finding stuff in vendor and patched
13
+sys.path.append(os.path.dirname(os.path.dirname(pardir)))
14
+
15
from pipenv.vendor.pipdeptree._cli import get_options
16
from pipenv.vendor.pipdeptree._detect_env import detect_active_interpreter
17
from pipenv.vendor.pipdeptree._discovery import get_installed_distributions
0 commit comments