Skip to content

Commit

Permalink
Typing fix. (#3759)
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigogiraoserrao authored Nov 27, 2023
1 parent fe0892e commit 7bbb194
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 7bbb194

Please sign in to comment.