Skip to content

Commit 7e14708

Browse files
committed
👕 Update some type hints
1 parent e0b1b7a commit 7e14708

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/textual_fspicker/parts/directory_navigation.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,11 @@
66

77
##############################################################################
88
# Python imports.
9+
from collections.abc import Iterable
910
from dataclasses import dataclass
1011
from datetime import datetime
1112
from pathlib import Path
12-
from typing import ClassVar, Iterable, NamedTuple, Optional
13+
from typing import ClassVar, Final, NamedTuple, Optional
1314

1415
##############################################################################
1516
# Rich imports.
@@ -26,7 +27,6 @@
2627
from textual.widgets import OptionList
2728
from textual.widgets.option_list import Option
2829
from textual.worker import get_current_worker
29-
from typing_extensions import Final
3030

3131
##############################################################################
3232
# Local imports.

0 commit comments

Comments
 (0)