Browse Source

tkpanels: Fix error running with Python 3.8

rdb 2 years ago
parent
commit
3922800aa4
1 changed files with 1 additions and 1 deletions
  1. 1 1
      direct/src/tkpanels/Inspector.py

+ 1 - 1
direct/src/tkpanels/Inspector.py

@@ -31,7 +31,7 @@ def inspect(anObject):
 
 ### private
 
-_InspectorMap: dict[str, str]
+_InspectorMap: "dict[str, str]"
 
 
 def inspectorFor(anObject):