From 12dab284cb6aef896a8f885f5574ed5a8ac9a0b4 Mon Sep 17 00:00:00 2001 From: Hemna Date: Wed, 20 Mar 2024 09:22:48 -0400 Subject: [PATCH] Start to add types --- aprsd/wsgi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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",