Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Indeed. Thank you!

Co-authored-by: Nikki Everett <[email protected]>
Signed-off-by: Eduardo Apolinario <[email protected]>
  • Loading branch information
eapolinario and neverett authored Aug 8, 2024
1 parent d1d7a5c commit 37c983d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/flyte_fundamentals/visualizing_task_input_and_output.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import pandas as pd
from flytekit import task, workflow
@task(enable_deck=False)
@task(enable_deck=True)
def iris_data() -> pd.DataFrame:
...
```
Expand All @@ -51,7 +51,7 @@ from typing import Optional
from flytekit import task, workflow
@task(enable_deck=False)
@task(enable_deck=True)
def iris_data(
sample_frac: Optional[float] = None,
random_state: Optional[int] = None,
Expand Down Expand Up @@ -168,7 +168,7 @@ function. In the following example, we extend the `iris_data` task with:
import flytekit
from flytekitplugins.deck.renderer import MarkdownRenderer, BoxRenderer
@task(enable_deck=False)
@task(enable_deck=True)
def iris_data(
sample_frac: Optional[float] = None,
random_state: Optional[int] = None,
Expand Down Expand Up @@ -220,7 +220,7 @@ except ImportError:
from typing_extensions import Annotated
@task(enable_deck=False)
@task(enable_deck=True)
def iris_data(
sample_frac: Optional[float] = None,
random_state: Optional[int] = None,
Expand Down

0 comments on commit 37c983d

Please sign in to comment.