From 5fdd73f350d465dae73f82c8a7f9113e12313b50 Mon Sep 17 00:00:00 2001 From: Ayman Bagabas Date: Mon, 10 Nov 2025 15:49:13 -0500 Subject: [PATCH] chore: format file imports with gofumpt --- progress/progress.go | 2 +- textarea/textarea.go | 2 +- textarea/textarea_test.go | 2 +- textinput/textinput.go | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/progress/progress.go b/progress/progress.go index b5730bb..9d19aba 100644 --- a/progress/progress.go +++ b/progress/progress.go @@ -10,8 +10,8 @@ import ( "time" tea "charm.land/bubbletea/v2" - "github.com/charmbracelet/harmonica" "charm.land/lipgloss/v2" + "github.com/charmbracelet/harmonica" "github.com/charmbracelet/x/ansi" "github.com/lucasb-eyer/go-colorful" ) diff --git a/textarea/textarea.go b/textarea/textarea.go index 463181a..991299e 100644 --- a/textarea/textarea.go +++ b/textarea/textarea.go @@ -18,8 +18,8 @@ import ( "charm.land/bubbles/v2/key" "charm.land/bubbles/v2/viewport" tea "charm.land/bubbletea/v2" - "github.com/atotto/clipboard" "charm.land/lipgloss/v2" + "github.com/atotto/clipboard" "github.com/charmbracelet/x/ansi" rw "github.com/mattn/go-runewidth" "github.com/rivo/uniseg" diff --git a/textarea/textarea_test.go b/textarea/textarea_test.go index e01ac5a..98cfed3 100644 --- a/textarea/textarea_test.go +++ b/textarea/textarea_test.go @@ -6,9 +6,9 @@ import ( "testing" "unicode" - "github.com/MakeNowJust/heredoc" tea "charm.land/bubbletea/v2" "charm.land/lipgloss/v2" + "github.com/MakeNowJust/heredoc" "github.com/charmbracelet/x/ansi" ) diff --git a/textinput/textinput.go b/textinput/textinput.go index 56306d6..363089b 100644 --- a/textinput/textinput.go +++ b/textinput/textinput.go @@ -8,12 +8,12 @@ import ( "strings" "unicode" - "github.com/atotto/clipboard" "charm.land/bubbles/v2/cursor" "charm.land/bubbles/v2/internal/runeutil" "charm.land/bubbles/v2/key" tea "charm.land/bubbletea/v2" "charm.land/lipgloss/v2" + "github.com/atotto/clipboard" rw "github.com/mattn/go-runewidth" "github.com/rivo/uniseg" )