From 5ef1f9a628db8cea98b07cba19b9422eafd96ad9 Mon Sep 17 00:00:00 2001 From: Avasam Date: Wed, 6 Nov 2024 19:26:27 -0500 Subject: [PATCH] Fix all reportInvalidTypeForm --- pyproject.toml | 1 - stubs/vispy/scene/visuals.pyi | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 72b4fe83..48cae9bf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -90,7 +90,6 @@ reportAttributeAccessIssue = "none" # TODO reportFunctionMemberAccess = "none" # TODO reportGeneralTypeIssues = "none" # TODO reportInvalidTypeArguments = "none" # TODO -reportInvalidTypeForm = "none" # TODO reportMissingImports = "none" # TODO reportUndefinedVariable = "none" # TODO reportUnusedVariable = "none" # TODO diff --git a/stubs/vispy/scene/visuals.pyi b/stubs/vispy/scene/visuals.pyi index e1ff06c3..f021d8af 100644 --- a/stubs/vispy/scene/visuals.pyi +++ b/stubs/vispy/scene/visuals.pyi @@ -10,7 +10,7 @@ from ..scene.node import Node from ..visuals.filters import Alpha, PickingFilter from .node import Node -_T = ... +_T = TypeVar("_T") class VisualNode(Node): _next_id: int = ...