diff --git a/src/codegen/sdk/core/detached_symbols/function_call.py b/src/codegen/sdk/core/detached_symbols/function_call.py index 8f8916978..ac25ccdab 100644 --- a/src/codegen/sdk/core/detached_symbols/function_call.py +++ b/src/codegen/sdk/core/detached_symbols/function_call.py @@ -600,7 +600,7 @@ def _compute_dependencies(self, usage_type: UsageKind, dest: HasName | None = No if isinstance(match, FunctionCall): match._compute_dependencies(usage_type, dest) for definition in self.function_definition_frames: - definition.add_usage(match=self, dest=dest, usage_type=usage_type, codebase_context=self.ctx) + definition.add_usage(self, usage_type, dest, self.ctx) else: match._compute_dependencies(usage_type, dest)