From 3922800aa45268de39a3936124cc4a8a3f0772be Mon Sep 17 00:00:00 2001 From: rdb Date: Wed, 11 Oct 2023 10:26:56 +0200 Subject: [PATCH] tkpanels: Fix error running with Python 3.8 --- direct/src/tkpanels/Inspector.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/direct/src/tkpanels/Inspector.py b/direct/src/tkpanels/Inspector.py index 707bc038c3..29bebcf16f 100644 --- a/direct/src/tkpanels/Inspector.py +++ b/direct/src/tkpanels/Inspector.py @@ -31,7 +31,7 @@ def inspect(anObject): ### private -_InspectorMap: dict[str, str] +_InspectorMap: "dict[str, str]" def inspectorFor(anObject):