Skip to content

Commit

Permalink
Make pager and clear default to false
Browse files Browse the repository at this point in the history
This is how it has worked until now, perhaps we should keep it like
this.
  • Loading branch information
ihabunek committed Jan 26, 2025
1 parent 2e96d61 commit 8016fcd
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions toot/cli/timelines_v2.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,11 @@ def common_timeline_options(func):
"--pager/--no-pager",
help="Page the results",
is_flag=True,
default=True,
)
@click.option(
"-c",
"--clear/--no-clear",
help="Clear the screen before printing. If paged, clear before each page.",
default=True,
)
@wraps(func)
def wrapper(*args, **kwargs):
Expand Down

0 comments on commit 8016fcd

Please sign in to comment.