-
-
Notifications
You must be signed in to change notification settings - Fork 19.1k
Open
@Dr-Irv
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.