Skip to content

Commit

Permalink
fix: import Self from typing_extensions to keep it 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
cyberglot committed Nov 8, 2024
1 parent f4c429f commit 26e1cea
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion nada_dsl/nada_types/scalar_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
"""The Nada Scalar type definitions."""

from dataclasses import dataclass
from typing import Any, Self, Union, TypeVar
from typing import Any, Union, TypeVar
from typing_extensions import Self
from nada_dsl.operations import *
from nada_dsl.program_io import Literal
from nada_dsl import SourceRef
Expand Down

0 comments on commit 26e1cea

Please sign in to comment.