diff --git a/qt/aqt/profiles.py b/qt/aqt/profiles.py index 39c0de804..f177950d5 100644 --- a/qt/aqt/profiles.py +++ b/qt/aqt/profiles.py @@ -149,8 +149,8 @@ class ProfileManager: # Profile load/save ###################################################################### - def profiles(self) -> list: - def names() -> list: + def profiles(self) -> list[str]: + def names() -> list[str]: return self.db.list("select name from profiles where name != '_global'") n = names()