From fa87d85708331ad45f28906217f94937bae474fe Mon Sep 17 00:00:00 2001 From: Daniel Date: Tue, 1 Mar 2022 01:45:08 +1100 Subject: Fix (some) mypy things (#996) * Fix mypy things * Fix flake8 Co-authored-by: Daniel Girtler --- archinstall/lib/storage.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'archinstall/lib/storage.py') diff --git a/archinstall/lib/storage.py b/archinstall/lib/storage.py index aa4a3667..650b9c0e 100644 --- a/archinstall/lib/storage.py +++ b/archinstall/lib/storage.py @@ -7,7 +7,9 @@ import os # (4. Added the ~/.config directory as an additional option for future reasons) # # And Keeping this in dict ensures that variables are shared across imports. -storage = { +from typing import Any, Dict + +storage: Dict[str, Any] = { 'PROFILE_PATH': [ './profiles', '~/.config/archinstall/profiles', -- cgit v1.2.3-54-g00ecf