Skip to content

Commit

Permalink
Switch to typing_extensions for TypedDict
Browse files Browse the repository at this point in the history
Pydantic politely asked me to do it in an error message for serde
  • Loading branch information
Anthony Naddeo committed Apr 10, 2024
1 parent 9e3243c commit 55995fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions langkit/core/workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
import time
from abc import ABC, abstractmethod
from dataclasses import dataclass
from typing import Dict, List, Mapping, Optional, Set, Tuple, TypedDict, Union, cast, overload
from typing import Dict, List, Mapping, Optional, Set, Tuple, Union, cast, overload

import pandas as pd
from typing_extensions import NotRequired
from typing_extensions import NotRequired, TypedDict

from langkit.core.context import Context
from langkit.core.metric import (
Expand Down

0 comments on commit 55995fd

Please sign in to comment.