1
0
mirror of https://github.com/nvbn/thefuck.git synced 2025-02-22 12:58:33 +00:00

Fix flake8 errors: E101/W191 indentation contains (mixed spaces and) tabs

This commit is contained in:
Joseph Frazier 2016-10-05 11:12:06 -04:00
parent 22b005cebb
commit 93302c74b5

View File

@ -6,15 +6,15 @@ from thefuck.rules.brew_link import get_new_command, match
@pytest.fixture @pytest.fixture
def stderr(): def stderr():
return ("Error: Could not symlink bin/gcp\n" return ("Error: Could not symlink bin/gcp\n"
"Target /usr/local/bin/gcp\n" "Target /usr/local/bin/gcp\n"
"already exists. You may want to remove it:\n" "already exists. You may want to remove it:\n"
"rm '/usr/local/bin/gcp'\n" "rm '/usr/local/bin/gcp'\n"
"\n" "\n"
"To force the link and overwrite all conflicting files:\n" "To force the link and overwrite all conflicting files:\n"
"brew link --overwrite coreutils\n" "brew link --overwrite coreutils\n"
"\n" "\n"
"To list all files that would be deleted:\n" "To list all files that would be deleted:\n"
"brew link --overwrite --dry-run coreutils\n") "brew link --overwrite --dry-run coreutils\n")
@pytest.fixture @pytest.fixture