exstruct 0.2.62__tar.gz → 0.2.70__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.
- {exstruct-0.2.62 → exstruct-0.2.70}/PKG-INFO +1 -1
- {exstruct-0.2.62 → exstruct-0.2.70}/pyproject.toml +1 -1
- {exstruct-0.2.62 → exstruct-0.2.70}/src/exstruct/engine.py +6 -1
- {exstruct-0.2.62 → exstruct-0.2.70}/LICENSE +0 -0
- {exstruct-0.2.62 → exstruct-0.2.70}/README.md +0 -0
- {exstruct-0.2.62 → exstruct-0.2.70}/src/exstruct/__init__.py +0 -0
- {exstruct-0.2.62 → exstruct-0.2.70}/src/exstruct/cli/main.py +0 -0
- {exstruct-0.2.62 → exstruct-0.2.70}/src/exstruct/core/__init__.py +0 -0
- {exstruct-0.2.62 → exstruct-0.2.70}/src/exstruct/core/cells.py +0 -0
- {exstruct-0.2.62 → exstruct-0.2.70}/src/exstruct/core/charts.py +0 -0
- {exstruct-0.2.62 → exstruct-0.2.70}/src/exstruct/core/integrate.py +0 -0
- {exstruct-0.2.62 → exstruct-0.2.70}/src/exstruct/core/shapes.py +0 -0
- {exstruct-0.2.62 → exstruct-0.2.70}/src/exstruct/errors.py +0 -0
- {exstruct-0.2.62 → exstruct-0.2.70}/src/exstruct/io/__init__.py +0 -0
- {exstruct-0.2.62 → exstruct-0.2.70}/src/exstruct/models/__init__.py +0 -0
- {exstruct-0.2.62 → exstruct-0.2.70}/src/exstruct/models/maps.py +0 -0
- {exstruct-0.2.62 → exstruct-0.2.70}/src/exstruct/models/types.py +0 -0
- {exstruct-0.2.62 → exstruct-0.2.70}/src/exstruct/py.typed +0 -0
- {exstruct-0.2.62 → exstruct-0.2.70}/src/exstruct/render/__init__.py +0 -0
|
@@ -515,7 +515,12 @@ class ExStructEngine:
|
|
|
515
515
|
|
|
516
516
|
if normalized_output_path is not None:
|
|
517
517
|
normalized_output_path.write_text(text, encoding="utf-8")
|
|
518
|
-
|
|
518
|
+
elif (
|
|
519
|
+
normalized_output_path is None
|
|
520
|
+
and chosen_sheets_dir is None
|
|
521
|
+
and chosen_print_areas_dir is None
|
|
522
|
+
and chosen_auto_page_breaks_dir is None
|
|
523
|
+
):
|
|
519
524
|
import sys
|
|
520
525
|
|
|
521
526
|
stream_target = target_stream or sys.stdout
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|