Some extra return type added.

This commit is contained in:
Heisenberg 2024-06-09 19:12:51 -04:00
parent c7da8c2aa3
commit 8a13137e81
8 changed files with 11 additions and 11 deletions

View file

@ -156,7 +156,7 @@ def test_app_ctx_globals_methods(app, app_ctx):
def test_custom_app_ctx_globals_class(app):
class CustomRequestGlobals:
def __init__(self):
def __init__(self) -> None:
self.spam = "eggs"
app.app_ctx_globals_class = CustomRequestGlobals