diff --git a/frigate/test/const.py b/frigate/test/const.py index ec4fffc57..9a851dc42 100644 --- a/frigate/test/const.py +++ b/frigate/test/const.py @@ -1,3 +1,3 @@ """Consts for testing.""" -TEST_DB = "test.db" \ No newline at end of file +TEST_DB = "test.db" diff --git a/frigate/test/test_http.py b/frigate/test/test_http.py index 3023d50bf..0c722a4a0 100644 --- a/frigate/test/test_http.py +++ b/frigate/test/test_http.py @@ -305,7 +305,11 @@ class TestHttp(unittest.TestCase): def test_config(self): 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: @@ -315,7 +319,11 @@ class TestHttp(unittest.TestCase): def test_recordings(self): 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"