remove _typing.py

This commit is contained in:
Will McGugan
2023-02-07 10:46:28 +00:00
parent bcf382d2ff
commit 5930ebf82e
32 changed files with 68 additions and 73 deletions

View File

@@ -3,6 +3,7 @@ import pytest
from typing import Sequence
from textual._immutable_sequence_view import ImmutableSequenceView
def wrap(source: Sequence[int]) -> ImmutableSequenceView[int]:
"""Wrap a sequence of integers inside an immutable sequence view."""
return ImmutableSequenceView[int](source)