Fix style issues on master using Black

This commit is contained in:
Daniel Pope 2019-05-31 11:57:28 +01:00
parent 2c68f86336
commit a5ff3cd01b
4 changed files with 19 additions and 14 deletions

View file

@ -525,7 +525,7 @@ def test_load_dotenv(monkeypatch):
assert os.environ["EGGS"] == "3"
# Non existent file should not load
assert not load_dotenv('non-existent-file')
assert not load_dotenv("non-existent-file")
@need_dotenv