1
0
mirror of https://github.com/nvbn/thefuck.git synced 2025-03-14 06:38:32 +00:00

Remove unused import

This commit is contained in:
gkodosis 2020-07-03 16:46:57 +03:00
parent 771a6b5ca1
commit a9aa53d71a
4 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
import pytest
from thefuck.rules.goenv_no_such_command import get_new_command, match
from thefuck.rules.goenv_no_such_command import match
from thefuck.types import Command

View File

@ -1,6 +1,6 @@
import pytest
from thefuck.rules.nodenv_no_such_command import get_new_command, match
from thefuck.rules.nodenv_no_such_command import match
from thefuck.types import Command

View File

@ -1,6 +1,6 @@
import pytest
from thefuck.rules.pyenv_no_such_command import get_new_command, match
from thefuck.rules.pyenv_no_such_command import match
from thefuck.types import Command

View File

@ -1,6 +1,6 @@
import pytest
from thefuck.rules.rbenv_no_such_command import get_new_command, match
from thefuck.rules.rbenv_no_such_command import match
from thefuck.types import Command