pdbp: adding typing to config settings vars
parent
53f6fa4867
commit
34bb787d36
|
@ -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):
|
||||
|
|
Loading…
Reference in New Issue