Преглед изворни кода

Fix missing `gdb.printing` import for the pretty print script

Michael Alexsander пре 5 месеци
родитељ
комит
81429da4ab
1 измењених фајлова са 1 додато и 0 уклоњено
  1. 1 0
      misc/utility/godot_gdb_pretty_print.py

+ 1 - 0
misc/utility/godot_gdb_pretty_print.py

@@ -25,6 +25,7 @@ From there you can figure out how to print it nicely.
 import re
 
 import gdb  # type: ignore
+import gdb.printing  # type: ignore
 
 
 # Printer for Godot StringName variables.