Skip to content

Commit f0edec0

Browse files
Auto-format: ruff check --select I --fix
1 parent 7d69680 commit f0edec0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extra_tests/snippets/stdlib_typing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def abort_signal_handler(
1818
# This tests that annotation scopes can access global implicit symbols (like Union)
1919
# that are imported at module level but not explicitly bound in the function scope.
2020
# Regression test for: https://github.com/RustPython/RustPython/issues/6718
21-
from typing import Union, Optional
21+
from typing import Optional, Union
2222

2323

2424
def function_with_union_param(x: Optional[Union[int, str]] = None) -> None:

0 commit comments

Comments
 (0)