From ae4ff5dc8d78a2f929bcb3613cff1981c5cfe6db Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Mon, 8 May 2023 12:02:42 -0400 Subject: [PATCH] pdbp: adding typing to config settings vars --- tractor/_debug.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tractor/_debug.py b/tractor/_debug.py index 383abe2..60d175a 100644 --- a/tractor/_debug.py +++ b/tractor/_debug.py @@ -161,13 +161,13 @@ class TractorConfig(pdbp.DefaultConfig): Custom ``pdbp`` goodness :surfer: ''' - # use_pygments = True - sticky_by_default = True - enable_hidden_frames = False + use_pygments: bool = True + sticky_by_default: bool = False + enable_hidden_frames: bool = False # much thanks @mdmintz for the hot tip! # fixes line spacing issue when resizing terminal B) - truncate_long_lines = False + truncate_long_lines: bool = False class MultiActorPdb(pdbp.Pdb):