pdbp: adding typing to config settings vars

master^2
Tyler Goodlet 2023-05-08 12:02:42 -04:00
parent 705538398f
commit ae4ff5dc8d
1 changed files with 4 additions and 4 deletions

View File

@ -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):