rich-objects 0.2.2__tar.gz → 0.2.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {rich_objects-0.2.2 → rich_objects-0.2.3}/PKG-INFO +1 -1
- {rich_objects-0.2.2 → rich_objects-0.2.3}/pyproject.toml +1 -1
- {rich_objects-0.2.2 → rich_objects-0.2.3}/rich_objects/display.py +2 -2
- {rich_objects-0.2.2 → rich_objects-0.2.3}/LICENSE +0 -0
- {rich_objects-0.2.2 → rich_objects-0.2.3}/README.md +0 -0
- {rich_objects-0.2.2 → rich_objects-0.2.3}/rich_objects/__init__.py +0 -0
- {rich_objects-0.2.2 → rich_objects-0.2.3}/rich_objects/console.py +0 -0
- {rich_objects-0.2.2 → rich_objects-0.2.3}/rich_objects/constants.py +0 -0
- {rich_objects-0.2.2 → rich_objects-0.2.3}/rich_objects/enums.py +0 -0
- {rich_objects-0.2.2 → rich_objects-0.2.3}/rich_objects/rich_table.py +0 -0
- {rich_objects-0.2.2 → rich_objects-0.2.3}/rich_objects/table_config.py +0 -0
|
@@ -232,8 +232,8 @@ def rich_table_factory(
|
|
|
232
232
|
|
|
233
233
|
def display(
|
|
234
234
|
obj: Any,
|
|
235
|
-
fmt: OutputFormat,
|
|
236
|
-
style: OutputStyle,
|
|
235
|
+
fmt: OutputFormat = OutputFormat.TABLE,
|
|
236
|
+
style: OutputStyle = OutputStyle.ALL,
|
|
237
237
|
indent: int = 2,
|
|
238
238
|
columns: Optional[list[str]] = None,
|
|
239
239
|
console: Optional[Console] = None,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|