Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
georgesittas committed Mar 3, 2024
1 parent 58c9bb4 commit 97b6baa
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions sqlglot/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -2127,9 +2127,7 @@ def _parse_on_conflict(self) -> t.Optional[exp.OnConflict]:
conflict_keys = self._parse_csv(self._parse_id_var)
self._match_r_paren()

action = self._parse_var_from_options(
self.CONFLICT_ACTIONS,
)
action = self._parse_var_from_options(self.CONFLICT_ACTIONS)
if self._prev.token_type == TokenType.UPDATE:
self._match(TokenType.SET)
expressions = self._parse_csv(self._parse_equality)
Expand Down

0 comments on commit 97b6baa

Please sign in to comment.