Skip to content

Commit 7bbb194

Browse files
Typing fix. (#3759)
1 parent fe0892e commit 7bbb194

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/textual/_box_drawing.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,13 @@
1212
1313
"""
1414

15+
from __future__ import annotations
16+
1517
from functools import lru_cache
1618

1719
from typing_extensions import TypeAlias
1820

19-
Quad: TypeAlias = tuple[int, int, int, int]
21+
Quad: TypeAlias = "tuple[int, int, int, int]"
2022
"""Four values indicating the composition of the box character."""
2123

2224
# Yes, I typed this out by hand. - WM

0 commit comments

Comments
 (0)