(shell: str)
| 54 | |
| 55 | |
| 56 | def get_script_path(shell: str) -> Path: |
| 57 | if shell == "zsh": |
| 58 | return Path.home() / ".shelloracle.zsh" |
| 59 | if shell == "fish": |
| 60 | return Path.home() / ".shelloracle.fish" |
| 61 | return Path.home() / ".shelloracle.bash" |
| 62 | |
| 63 | |
| 64 | def get_rc_path(shell: str) -> Path: |
no outgoing calls
no test coverage detected