Skip to content

Commit 51eaf1d

Browse files
committed
Formatting fixes
1 parent ffc5d6b commit 51eaf1d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/shelloracle/bootstrap.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def replace_home_with_tilde(path: Path) -> Path:
2020
return Path("~") / relative_path
2121

2222

23-
supported_shells = ["zsh", "bash"]
23+
supported_shells = ("zsh", "bash")
2424

2525

2626
def get_installed_shells() -> list[str]:
@@ -79,7 +79,7 @@ def bootstrap() -> None:
7979
if not (shells := get_installed_shells()):
8080
print_error(f"No compatible shells found. Supported shells: {', '.join(supported_shells)}")
8181
return
82-
if confirm("Enable terminal keybindings and update rc ?", suffix=" ([y]/n) ") is False:
82+
if confirm("Enable terminal keybindings and update rc?", suffix=" ([y]/n) ") is False:
8383
return
8484
for shell in shells:
8585
write_script_home(shell)

0 commit comments

Comments
 (0)