Skip to content
This repository was archived by the owner on Jul 27, 2023. It is now read-only.

Commit be4e6dc

Browse files
committed
Fix TypeAliasName to store name instead of load
1 parent fab9cc5 commit be4e6dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ruff_python_parser/src/python.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33544,7 +33544,7 @@ fn __action163<
3354433544
) -> ast::Expr
3354533545
{
3354633546
ast::Expr::Name(
33547-
ast::ExprName { id: name.into(), ctx: ast::ExprContext::Load, range: (location..end_location).into() },
33547+
ast::ExprName { id: name.into(), ctx: ast::ExprContext::Store, range: (location..end_location).into() },
3354833548
)
3354933549
}
3355033550

0 commit comments

Comments
 (0)