Spaces:
Running
Running
Fix function arg types
Browse files- helpers/pptx_helper.py +4 -4
helpers/pptx_helper.py
CHANGED
|
@@ -356,7 +356,7 @@ def _handle_default_display(
|
|
| 356 |
|
| 357 |
|
| 358 |
def _handle_display_image__in_foreground(
|
| 359 |
-
presentation: pptx.Presentation
|
| 360 |
slide_json: dict,
|
| 361 |
slide_width_inch: float,
|
| 362 |
slide_height_inch: float
|
|
@@ -434,7 +434,7 @@ def _handle_display_image__in_foreground(
|
|
| 434 |
|
| 435 |
|
| 436 |
def _handle_display_image__in_background(
|
| 437 |
-
presentation: pptx.Presentation
|
| 438 |
slide_json: dict,
|
| 439 |
slide_width_inch: float,
|
| 440 |
slide_height_inch: float
|
|
@@ -508,7 +508,7 @@ def _handle_display_image__in_background(
|
|
| 508 |
|
| 509 |
|
| 510 |
def _handle_icons_ideas(
|
| 511 |
-
presentation: pptx.Presentation
|
| 512 |
slide_json: dict,
|
| 513 |
slide_width_inch: float,
|
| 514 |
slide_height_inch: float
|
|
@@ -656,7 +656,7 @@ def _add_text_at_bottom(
|
|
| 656 |
|
| 657 |
|
| 658 |
def _handle_double_col_layout(
|
| 659 |
-
presentation: pptx.Presentation
|
| 660 |
slide_json: dict,
|
| 661 |
slide_width_inch: float,
|
| 662 |
slide_height_inch: float
|
|
|
|
| 356 |
|
| 357 |
|
| 358 |
def _handle_display_image__in_foreground(
|
| 359 |
+
presentation: pptx.Presentation,
|
| 360 |
slide_json: dict,
|
| 361 |
slide_width_inch: float,
|
| 362 |
slide_height_inch: float
|
|
|
|
| 434 |
|
| 435 |
|
| 436 |
def _handle_display_image__in_background(
|
| 437 |
+
presentation: pptx.Presentation,
|
| 438 |
slide_json: dict,
|
| 439 |
slide_width_inch: float,
|
| 440 |
slide_height_inch: float
|
|
|
|
| 508 |
|
| 509 |
|
| 510 |
def _handle_icons_ideas(
|
| 511 |
+
presentation: pptx.Presentation,
|
| 512 |
slide_json: dict,
|
| 513 |
slide_width_inch: float,
|
| 514 |
slide_height_inch: float
|
|
|
|
| 656 |
|
| 657 |
|
| 658 |
def _handle_double_col_layout(
|
| 659 |
+
presentation: pptx.Presentation,
|
| 660 |
slide_json: dict,
|
| 661 |
slide_width_inch: float,
|
| 662 |
slide_height_inch: float
|