diff --git a/frigate/test/http_api/base_http_test.py b/frigate/test/http_api/base_http_test.py index 3c4a7ccdc..e758a14dc 100644 --- a/frigate/test/http_api/base_http_test.py +++ b/frigate/test/http_api/base_http_test.py @@ -119,6 +119,7 @@ class BaseTestHttp(unittest.TestCase): None, stats, None, + None, ) def insert_mock_event( diff --git a/frigate/test/test_http.py b/frigate/test/test_http.py index 70c452c23..5761e83aa 100644 --- a/frigate/test/test_http.py +++ b/frigate/test/test_http.py @@ -113,7 +113,7 @@ class TestHttp(unittest.TestCase): except OSError: pass - def __init_app(self, updater: Any | None) -> Any: + def __init_app(self, updater: Any | None = None) -> Any: return create_fastapi_app( FrigateConfig(**self.minimal_config), self.db,