pdbp: adding typing to config settings vars
parent
c49cace550
commit
adcb70c521
|
@ -161,13 +161,13 @@ class TractorConfig(pdbp.DefaultConfig):
|
||||||
Custom ``pdbp`` goodness :surfer:
|
Custom ``pdbp`` goodness :surfer:
|
||||||
|
|
||||||
'''
|
'''
|
||||||
use_pygments = True
|
use_pygments: bool = True
|
||||||
sticky_by_default = False
|
sticky_by_default: bool = False
|
||||||
enable_hidden_frames = False
|
enable_hidden_frames: bool = False
|
||||||
|
|
||||||
# much thanks @mdmintz for the hot tip!
|
# much thanks @mdmintz for the hot tip!
|
||||||
# fixes line spacing issue when resizing terminal B)
|
# fixes line spacing issue when resizing terminal B)
|
||||||
truncate_long_lines = True
|
truncate_long_lines: bool = False
|
||||||
|
|
||||||
|
|
||||||
class MultiActorPdb(pdbp.Pdb):
|
class MultiActorPdb(pdbp.Pdb):
|
||||||
|
|
Loading…
Reference in New Issue