Run black

This commit is contained in:
Tom Tromey
2023-11-22 21:05:41 -07:00
parent 5da88dac7a
commit 602c144f6e
20 changed files with 365 additions and 280 deletions

View File

@@ -19,12 +19,13 @@ import gdb
import gui.logwindow
from gui.startup import in_gdb_thread
class DPrintfBreakpoint(gdb.Breakpoint):
@in_gdb_thread
def __init__(self, spec, window, arg):
super(DPrintfBreakpoint, self).__init__(spec, gdb.BP_BREAKPOINT)
self.window = window
self.command = 'printf ' + arg
self.command = "printf " + arg
@in_gdb_thread
def stop(self):