Autoformatting applied

pull/649/head
Erik Sundell 2019-06-18 00:38:06 +02:00
rodzic 6de7a8c97a
commit c30337097e
3 zmienionych plików z 9 dodań i 3 usunięć

Wyświetl plik

@ -8,4 +8,6 @@ except ImportError:
# We want an ImportError to be thrown for this test to pass # We want an ImportError to be thrown for this test to pass
pass pass
else: else:
raise Exception("'numpy' shouldn't have been installed! It was listed in Pipfile but not in the Pipfile.lock.") raise Exception(
"'numpy' shouldn't have been installed! It was listed in Pipfile but not in the Pipfile.lock."
)

Wyświetl plik

@ -8,4 +8,6 @@ except ImportError:
# We want an ImportError to be thrown for this test to pass # We want an ImportError to be thrown for this test to pass
pass pass
else: else:
raise Exception("'numpy' shouldn't have been installed! It was listed in requirements.txt but not in the Pipfile that has precedence.") raise Exception(
"'numpy' shouldn't have been installed! It was listed in requirements.txt but not in the Pipfile that has precedence."
)

Wyświetl plik

@ -8,4 +8,6 @@ except ImportError:
# We want an ImportError to be thrown for this test to pass # We want an ImportError to be thrown for this test to pass
pass pass
else: else:
raise Exception("'dummy' and its dependency 'pypi_pkg_test' shouldn't have been installed! A Pipfile was present without explicit instructions to install the local package 'dummy'.") raise Exception(
"'dummy' and its dependency 'pypi_pkg_test' shouldn't have been installed! A Pipfile was present without explicit instructions to install the local package 'dummy'."
)