Skip to content

Commit bc3a8f0

Browse files
committed
fix: gofumpt short declaration for statusColor
Use := instead of var for the first declaration of statusColor so the file passes the CI gofumpt gate.
1 parent c0ec80d commit bc3a8f0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

internal/config/developer_path.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ func FormatDeveloperPathReport(ctx context.Context) string {
281281
b.WriteString(theme.Tint("Developer path (graycode · graycode-router · shrike · harrier)", theme.ReportInfo) + "\n\n")
282282

283283
status := "NEEDS SETUP"
284-
var statusColor = theme.ReportWarn
284+
statusColor := theme.ReportWarn
285285
switch {
286286
case r.Ready:
287287
status = "READY"

0 commit comments

Comments
 (0)