Skip to content

Commit 79f4f35

Browse files
committed
Fixes
1 parent 8b0cfe2 commit 79f4f35

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

pauldot/commands/tool.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ def tool_add(
193193
if cfg.git.auto_commit:
194194
git.commit(repo_path, f"pauldot: add tool {name}")
195195
console.print("✓ Committed to dotfiles repo.")
196-
except (FileNotFoundError, RuntimeError):
196+
except FileNotFoundError, RuntimeError:
197197
pass # auto-commit is best-effort
198198

199199

@@ -216,5 +216,5 @@ def tool_remove(name: str) -> None:
216216
if cfg.git.auto_commit:
217217
git.commit(repo_path, f"pauldot: remove tool {name}")
218218
console.print("✓ Committed to dotfiles repo.")
219-
except (FileNotFoundError, RuntimeError):
219+
except FileNotFoundError, RuntimeError:
220220
pass # auto-commit is best-effort

0 commit comments

Comments
 (0)