From a2dc9b9d19220b387c792d3bbee074c08d30aeb0 Mon Sep 17 00:00:00 2001 From: Benjamin Drung Date: Thu, 1 Aug 2024 21:14:49 +0200 Subject: [PATCH] type hints --- bdebstrap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bdebstrap b/bdebstrap index f9a6cc4..04a6fd0 100755 --- a/bdebstrap +++ b/bdebstrap @@ -65,7 +65,7 @@ MMDEBSTRAP_OPTS = { } -class Config(dict): +class Config(dict[str, typing.Any]): """YAML configuration for bdebstrap.""" _ENV_PREFIX = "BDEBSTRAP_"