Skip to content

Commit

Permalink
Typing fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigogiraoserrao committed Nov 27, 2023
1 parent b70a8f1 commit f046abe
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/textual/_box_drawing.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,13 @@
"""

from __future__ import annotations

from functools import lru_cache

from typing_extensions import TypeAlias

Quad: TypeAlias = tuple[int, int, int, int]
Quad: TypeAlias = "tuple[int, int, int, int]"
"""Four values indicating the composition of the box character."""

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

0 comments on commit f046abe

Please sign in to comment.