From d3586ad2b2b140435055c349393154ae7cfffaea Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Fri, 27 Mar 2026 07:18:04 +0200 Subject: task 3a4c0f14-16ad-487f-af7c-bd99ee6464e6: use pointer Dispatcher receivers --- internal/askcli/command_complete_uuids.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'internal/askcli/command_complete_uuids.go') diff --git a/internal/askcli/command_complete_uuids.go b/internal/askcli/command_complete_uuids.go index 8d37a80..3a2ef9e 100644 --- a/internal/askcli/command_complete_uuids.go +++ b/internal/askcli/command_complete_uuids.go @@ -7,7 +7,7 @@ import ( "io" ) -func (d Dispatcher) handleCompleteUUIDs(ctx context.Context, stdout, stderr io.Writer) (int, error) { +func (d *Dispatcher) handleCompleteUUIDs(ctx context.Context, stdout, stderr io.Writer) (int, error) { var outBuf bytes.Buffer code, err := d.runner.Run(ctx, []string{"status:pending", "export"}, nil, &outBuf, stderr) if code != 0 { -- cgit v1.2.3