Allow for type unions under Python 3.7

This commit is contained in:
Dave Pearson
2023-05-15 10:13:28 +01:00
parent e0ac60ce03
commit 8208388cf9

View File

@@ -1,5 +1,7 @@
"""Provides a selection list widget, allowing one or more items to be selected."""
from __future__ import annotations
from typing import Generic, TypeVar
from rich.console import RenderableType