Skip to content

Commit

Permalink
don't need useful types
Browse files Browse the repository at this point in the history
  • Loading branch information
willmcgugan committed Mar 1, 2024
1 parent a1f882b commit 2282da5
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 18 deletions.
16 changes: 1 addition & 15 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ pytest-textual-snapshot = ">=0.4.0"
types-tree-sitter = "^0.20.1.4"
types-tree-sitter-languages = "^1.7.0.1"
griffe = "0.32.3"
useful-types = ">=0.2.0"

[tool.pytest.ini_options]
asyncio_mode = "auto"
Expand Down
2 changes: 1 addition & 1 deletion src/textual/_node_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import rich.repr

if TYPE_CHECKING:
from useful_types import SupportsRichComparison
from _typeshed import SupportsRichComparison

from .widget import Widget

Expand Down
2 changes: 1 addition & 1 deletion src/textual/dom.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@

if TYPE_CHECKING:
from typing_extensions import Self, TypeAlias
from useful_types import SupportsRichComparison
from _typeshed import SupportsRichComparison

from rich.console import RenderableType
from .app import App
Expand Down

0 comments on commit 2282da5

Please sign in to comment.