From 6f613a1ea59ca0214383d88b77cd246f4b4654b0 Mon Sep 17 00:00:00 2001 From: ItsDrike Date: Sat, 18 Dec 2021 03:10:16 +0100 Subject: [PATCH] Fix python aliases --- home/.config/shell/aliases | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home/.config/shell/aliases b/home/.config/shell/aliases index 9ce6f67..910ad36 100755 --- a/home/.config/shell/aliases +++ b/home/.config/shell/aliases @@ -83,7 +83,7 @@ alias zbi='z -b -I' # pick parent directory to cd into with fzf alias ipy='ipython' alias bpy='bpython' command -v ipython > /dev/null && alias py='ipython' || alias py='python' -for version in "2 3 3.6 3.7 3.8 3.9 3.10"; do # Make aliases for py3.6,py3.7,... +for version in 2 3 3.6 3.7 3.8 3.9 3.10; do # Make aliases for py3.6,py3.7,... if ! command -v "python$version" > /dev/null; then continue fi