fix compile error

Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com>
This commit is contained in:
Alex Goodman 2025-11-14 23:45:10 -05:00
parent 7e330cdff8
commit 308185c568

View File

@ -18,7 +18,7 @@ var _ interface {
func defaultPythonConfig() pythonConfig { func defaultPythonConfig() pythonConfig {
def := python.DefaultCatalogerConfig() def := python.DefaultCatalogerConfig()
return pythonConfig{ return pythonConfig{
GuessUnpinnedRequirements: def.GuessUnpinnedRequirements, GuessUnpinnedRequirements: &def.GuessUnpinnedRequirements,
} }
} }