You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
refactor: use native Python typing instead of typing module
- Replace Union[A, B] with A | B
- Replace Optional[T] with T | None
- Replace List[T] with list[T]
- Replace Any with any
- Use collections.abc.Callable instead of typing.Callable
- Maintain TYPE_CHECKING for circular import resolution
🤖 Assisted by Amazon Q Developer
0 commit comments