Skip to content

Commit 0a1890b

Browse files
committed
Do not limit rich output
1 parent ad14cc0 commit 0a1890b

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

CHANGES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
## 1.0.0a5 (unreleased)
55

66

7-
- Nothing changed yet.
7+
- Do not limit rich output
88

99

1010
## 1.0.0a4 (2024-12-18)

src/collective/pdbpp/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def initialize(context):
2222

2323
def rich_pprint(obj):
2424
"""Print using rich."""
25-
rich.pretty.pprint(obj, expand_all=True, max_length=10, max_string=50)
25+
rich.pretty.pprint(obj, expand_all=True)
2626

2727

2828
def _do_pp(self, arg):

0 commit comments

Comments
 (0)