From adcb70c521f97201c5448a2214d8c37a5095a7d4 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 a91ef54..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 = False - 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 = True + truncate_long_lines: bool = False class MultiActorPdb(pdbp.Pdb):