From 308185c568450d8877929eca976c549d99f3ea2f Mon Sep 17 00:00:00 2001 From: Alex Goodman Date: Fri, 14 Nov 2025 23:45:10 -0500 Subject: [PATCH] fix compile error Signed-off-by: Alex Goodman --- cmd/syft/internal/options/python.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/syft/internal/options/python.go b/cmd/syft/internal/options/python.go index 1b9739035..7ebdf9527 100644 --- a/cmd/syft/internal/options/python.go +++ b/cmd/syft/internal/options/python.go @@ -18,7 +18,7 @@ var _ interface { func defaultPythonConfig() pythonConfig { def := python.DefaultCatalogerConfig() return pythonConfig{ - GuessUnpinnedRequirements: def.GuessUnpinnedRequirements, + GuessUnpinnedRequirements: &def.GuessUnpinnedRequirements, } }