Skip to content

Commit

Permalink
fix: 💄 mypy errors
Browse files Browse the repository at this point in the history
  • Loading branch information
paul-paliychuk committed Aug 23, 2024
1 parent e754baf commit 07950b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/prompts/extract_edge_dates.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from typing import Protocol, TypedDict
from typing import Any, Protocol, TypedDict

from .models import Message, PromptFunction, PromptVersion

Expand All @@ -11,7 +11,7 @@ class Versions(TypedDict):
v1: PromptFunction


def v1(context: dict[str, any]) -> list[Message]:
def v1(context: dict[str, Any]) -> list[Message]:
return [
Message(
role='system',
Expand Down

0 comments on commit 07950b2

Please sign in to comment.