diff --git a/aprsd/wsgi.py b/aprsd/wsgi.py index e81ee89..04d7464 100644 --- a/aprsd/wsgi.py +++ b/aprsd/wsgi.py @@ -22,7 +22,7 @@ CONF = cfg.CONF LOG = logging.getLogger("gunicorn.access") auth = HTTPBasicAuth() -users = {} +users: dict[str, str] = {} app = Flask( "aprsd", static_url_path="/static",