From 9ff9cc83b4ccdbff40fc143eb7d0e32580d283b5 Mon Sep 17 00:00:00 2001 From: Oz Tiram Date: Wed, 31 Jul 2024 09:58:57 +0200 Subject: [PATCH] chore: remove outdated comment --- pipenv/shells.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pipenv/shells.py b/pipenv/shells.py index 634e39088b..23c1a2adb3 100644 --- a/pipenv/shells.py +++ b/pipenv/shells.py @@ -35,15 +35,13 @@ def _get_activate_script(cmd, venv): This is POSIX-only at the moment since the compat (pexpect-based) shell does not work elsewhere anyway. """ - # Suffix and source command for other shells. - # Support for fish shell. + # Suffix and source command for various shells. if cmd.endswith("/sh", "/bash", "/zsh"): suffix = "" command = "." elif cmd.endswith("/fish"): suffix = ".fish" command = "source" - # Support for csh shell. elif cmd.endswith("/csh"): suffix = ".csh" command = "source"