-
-
Notifications
You must be signed in to change notification settings - Fork 18.9k
Open
Labels
Typingtype annotations, mypy/pyright type checkingtype annotations, mypy/pyright type checking
Description
In various places, we use Sequence[str]
as a type annotation. The problem is that a regular string also matches Sequence[str]
. So we need to look at the various places we use Sequence[str]
and change the type accordingly. Maybe just List
or ArrayLike
, dependent on the context.
simon-liebehenschel
Metadata
Metadata
Assignees
Labels
Typingtype annotations, mypy/pyright type checkingtype annotations, mypy/pyright type checking