fix(router): drop duplicate Mapping import that fails ruff F811 (#35122)

router.py imports Mapping from collections.abc and again from typing,
which ruff flags as a redefinition and fails the lint CI job on every
open PR. Keep the collections.abc import
This commit is contained in:
ryan-crabbe-berri 2026-07-29 12:32:55 -07:00 committed by GitHub
parent 8b03315ac6
commit bf5334bc59
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -31,7 +31,6 @@ from typing import (
Generator,
List,
Literal,
Mapping,
Optional,
Set,
Tuple,