Skip to content

Commit 9bfcb56

Browse files
committed
Missed one
1 parent 627406e commit 9bfcb56

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_workflow.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ def update2(self, arg1: str):
225225
pass
226226

227227
# Intentionally missing decorator
228-
def base_update(self):
228+
def base_update(self): # type: ignore[reportIncompatibleVariableOverride]
229229
pass
230230

231231

@@ -288,7 +288,7 @@ def run(self):
288288

289289
def test_workflow_defn_non_async_run():
290290
with pytest.raises(ValueError) as err:
291-
workflow.run(NonAsyncRun.run)
291+
workflow.run(NonAsyncRun.run) # type: ignore[reportArgumentType]
292292
assert "must be an async function" in str(err.value)
293293

294294

0 commit comments

Comments
 (0)