mirror of
https://github.com/Textualize/textual.git
synced 2025-10-17 02:38:12 +03:00
Run black over recent immutable sequence view tests
Now that we're running black on tests...
This commit is contained in:
@@ -3,6 +3,7 @@ import pytest
|
|||||||
from typing import Sequence
|
from typing import Sequence
|
||||||
from textual._immutable_sequence_view import ImmutableSequenceView
|
from textual._immutable_sequence_view import ImmutableSequenceView
|
||||||
|
|
||||||
|
|
||||||
def wrap(source: Sequence[int]) -> ImmutableSequenceView[int]:
|
def wrap(source: Sequence[int]) -> ImmutableSequenceView[int]:
|
||||||
"""Wrap a sequence of integers inside an immutable sequence view."""
|
"""Wrap a sequence of integers inside an immutable sequence view."""
|
||||||
return ImmutableSequenceView[int](source)
|
return ImmutableSequenceView[int](source)
|
||||||
|
|||||||
Reference in New Issue
Block a user