From ca47d5da893abd77a172b7ab8253c917832dbce4 Mon Sep 17 00:00:00 2001 From: "Waylon S. Walker" Date: Tue, 25 Nov 2025 20:43:59 -0600 Subject: [PATCH] remove unused unicode --- workspaces.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workspaces.py b/workspaces.py index c7b22f2..99b88ab 100755 --- a/workspaces.py +++ b/workspaces.py @@ -800,7 +800,7 @@ def remove_workspace( if status.dirty: problems.append(f"{wt.name}: dirty working tree on '{branch}'") - # Only care about "unpushe­d commits" if the branch is NOT integrated into main. + # Only care about "unpushed commits" if the branch is NOT integrated into main. if repo is not None and branch != "?" and not integrated: if has_unpushed_commits(wt, branch): problems.append(f"{wt.name}: unpushed commits on '{branch}'")