Skip to content

Commit f9dbca4

Browse files
committed
Change to_line default from <large num> to None
1 parent 360bb95 commit f9dbca4

File tree

1 file changed

+1
-1
lines changed
  • cross-project-tests/debuginfo-tests/dexter/dex/command/commands

1 file changed

+1
-1
lines changed

cross-project-tests/debuginfo-tests/dexter/dex/command/commands/DexContinue.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def __init__(self, *args, **kwargs):
3636
raise TypeError("Missing from_line argument")
3737

3838
# Optional conditional args: to_line, hit_count.
39-
self.to_line = kwargs.pop("to_line", 999999)
39+
self.to_line = kwargs.pop("to_line", None)
4040
self.hit_count = kwargs.pop("hit_count", None)
4141

4242
if kwargs:

0 commit comments

Comments
 (0)