1
0
mirror of https://github.com/nvbn/thefuck.git synced 2025-03-19 00:58:56 +00:00
2020-07-06 16:39:57 +03:00

11 lines
238 B
Python

from thefuck.utils import which
env_available = bool(which('pyenv')) or bool(which('rbenv')) or bool(which('goenv')) or bool(which('nodenv'))
COMMON_TYPOS = {
'list': ['versions', 'install --list'],
'remove': ['uninstall'],
}