We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f97aae commit 7c15936Copy full SHA for 7c15936
1 file changed
dfetch/reporting/sbom_reporter.py
@@ -28,6 +28,11 @@
28
from dfetch.manifest.project import ProjectEntry
29
from dfetch.reporting.reporter import Reporter
30
31
+# PyRight is pedantic with decorators see https://github.com/madpah/serializable/issues/8
32
+# It might be fixable with https://github.com/microsoft/pyright/discussions/4426, would prefer
33
+# upstream fix, for now suppress, mypy will keep us safe.
34
+# pyright: reportCallIssue=false, reportAttributeAccessIssue=false
35
+
36
37
class SbomReporter(Reporter):
38
"""Reporter for generating SBoM's."""
0 commit comments