Convert to black formatting

This commit is contained in:
Alan Pryor
2019-08-03 12:55:38 -04:00
parent 9bdaa8f161
commit 9b136b1ffa
59 changed files with 512 additions and 476 deletions

View File

@@ -5,7 +5,7 @@ from app import create_app
@pytest.fixture
def app():
return create_app('test')
return create_app("test")
@pytest.fixture
@@ -16,6 +16,7 @@ def client(app):
@pytest.fixture
def db(app):
from app import db
with app.app_context():
db.create_all()
yield db