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: complete migration to native Python typing
- Replace Union[A, B] with A | B (using string literals for forward refs)
- 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
- All tests pass with native typing syntax
🤖 Assisted by Amazon Q Developer
0 commit comments