Skip to content

Commit

Permalink
🔧 Update type annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
shroominic committed Nov 11, 2023
1 parent abfdb0c commit 1123176
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/extraction_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def description(task: Task) -> str:
return chain()


async def extract_task(task_description: Task) -> Task:
async def extract_task(task_description: str) -> Task:
"""
EXTRACT TASK: {task_description}
"""
Expand All @@ -36,7 +36,7 @@ def compare_tasks(task: Task, task2: Task) -> bool:
return chain()


def test_extraction():
def test_extraction() -> None:
from asyncio import run as _await

task = Task(
Expand Down

0 comments on commit 1123176

Please sign in to comment.