[python] Delegate to visitPySequenceExpression when visiting PySetLiteralExpression

GitOrigin-RevId: be032f963dccd6ebc062517047c5a1c962b31ec6
This commit is contained in:
Mikhail Golubev
2024-07-11 19:41:55 +03:00
committed by intellij-monorepo-bot
parent c53b8ee683
commit 8eb96b314a
2 changed files with 2 additions and 2 deletions

View File

@@ -83,7 +83,7 @@ public class PyElementVisitor extends PsiElementVisitor {
}
public void visitPySetLiteralExpression(@NotNull PySetLiteralExpression node) {
visitPyExpression(node);
visitPySequenceExpression(node);
}
public void visitPyListCompExpression(@NotNull PyListCompExpression node) {