Remove unused Sequence imports after argv type change

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
default 2026-05-04 07:51:22 +00:00
parent e514e01ee5
commit 125cb6f78c
24 changed files with 24 additions and 24 deletions

View file

@ -5,7 +5,7 @@ import ast
import platform
import sys
import traceback
from collections.abc import Iterable, Sequence
from collections.abc import Iterable
def main(argv: Iterable[str] | None = None) -> int: