We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1afc7b8 commit 264c173Copy full SHA for 264c173
src/matchcode_toolkit/pipelines/scan_and_fingerprint_package.py
@@ -23,8 +23,10 @@
23
from scanpipe.pipelines.scan_single_package import ScanSinglePackage
24
from scanpipe.pipes import matchcode
25
26
+from matchcode_toolkit.pipelines.fingerprint_codebase import FingerprintCodebase
27
-class ScanAndFingerprintPackage(ScanSinglePackage):
28
+
29
+class ScanAndFingerprintPackage(FingerprintCodebase, ScanSinglePackage):
30
"""
31
Scan a single package file or package archive with ScanCode-toolkit, then
32
calculate the directory fingerprints of the codebase.
@@ -55,9 +57,3 @@ def steps(cls):
55
57
"--classify",
56
58
"--summary",
59
]
-
- def fingerprint_codebase(self):
60
- """
61
- Compute directory fingerprints for matching purposes
62
63
- matchcode.fingerprint_codebase_directories(self.project)
0 commit comments