Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
MariusMerkleQC committed Nov 6, 2024
1 parent a610fcd commit 045dee4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sqlcompyre/results/names.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def missing_right(self) -> list[str]:
left_renamed = {self.name_mapping.get(k, k) for k in self._set_left}
else:
left_renamed = self._set_left
return sorted(self._set_left - left_renamed)
return sorted(left_renamed - self._set_right)

@cached_property
def equal(self) -> bool:
Expand Down

0 comments on commit 045dee4

Please sign in to comment.