Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor(core): Update with_overrides signatures and type hints #2323

Merged
merged 5 commits into from
Aug 26, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
nit
Signed-off-by: Kevin Su <pingsutw@gmail.com>
  • Loading branch information
pingsutw committed Apr 3, 2024
commit a96e036db1d4416f044aab5fdb5afd08d4617502
2 changes: 1 addition & 1 deletion tests/flytekit/unit/core/test_node_creation.py
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ def my_wf(a: str) -> str:
def my_wf(a: str) -> str:
return t1(a=a).with_overrides(task_config=None)

my_wf()
my_wf(a=2)


def test_override_image():
Expand Down
Loading