Formatting

This commit is contained in:
Nick Mowen 2022-06-16 06:36:23 -06:00
parent 6054847764
commit 90469e231c
2 changed files with 11 additions and 3 deletions

View File

@ -305,7 +305,11 @@ class TestHttp(unittest.TestCase):
def test_config(self): def test_config(self):
app = create_app( app = create_app(
FrigateConfig(**self.minimal_config).runtime_config, self.db, None, None, None FrigateConfig(**self.minimal_config).runtime_config,
self.db,
None,
None,
None,
) )
with app.test_client() as client: with app.test_client() as client:
@ -315,7 +319,11 @@ class TestHttp(unittest.TestCase):
def test_recordings(self): def test_recordings(self):
app = create_app( app = create_app(
FrigateConfig(**self.minimal_config).runtime_config, self.db, None, None, None FrigateConfig(**self.minimal_config).runtime_config,
self.db,
None,
None,
None,
) )
id = "123456.random" id = "123456.random"