Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Don't import Self in Python < 3.11
  • Loading branch information
oscarbenjamin committed Oct 30, 2025
commit 0795d719166f90268af3361e8f33bff2e79be280
4 changes: 3 additions & 1 deletion src/flint/typing.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,14 @@
Iterator,
Iterable,
Any,
Self,
Mapping,
Sequence,
overload,
)

if TYPE_CHECKING:
from typing import Self

from .flint_base.flint_base import (
flint_elem,
flint_scalar,
Expand Down
Loading