From 6ed6c8cdbaed1976f47e685b66d032e3174d5e89 Mon Sep 17 00:00:00 2001 From: Dylan Baker Date: Fri, 6 Jan 2023 11:39:54 -0800 Subject: modules: fully type the Qt* modules The base module is fully typed, but the numbered version are not, though it's pretty trivial to do so. --- mesonbuild/modules/qt6.py | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'mesonbuild/modules/qt6.py') diff --git a/mesonbuild/modules/qt6.py b/mesonbuild/modules/qt6.py index 66fc43f..cafc531 100644 --- a/mesonbuild/modules/qt6.py +++ b/mesonbuild/modules/qt6.py @@ -12,17 +12,22 @@ # See the License for the specific language governing permissions and # limitations under the License. +from __future__ import annotations +import typing as T + from .qt import QtBaseModule from . import ModuleInfo +if T.TYPE_CHECKING: + from ..interpreter import Interpreter class Qt6Module(QtBaseModule): INFO = ModuleInfo('qt6', '0.57.0') - def __init__(self, interpreter): + def __init__(self, interpreter: Interpreter): QtBaseModule.__init__(self, interpreter, qt_version=6) -def initialize(*args, **kwargs): - return Qt6Module(*args, **kwargs) +def initialize(interp: Interpreter) -> Qt6Module: + return Qt6Module(interp) -- cgit v1.1