Skip to content

Commit

Permalink
pdbp: adding typing to config settings vars
Browse files Browse the repository at this point in the history
  • Loading branch information
goodboy committed May 8, 2023
1 parent 53f6fa4 commit 34bb787
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tractor/_debug.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 34bb787

Please sign in to comment.