Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
frodrigo committed Jun 3, 2024
1 parent 52192be commit 0937495
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/overpass_parser/nodes/selectors.rb
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def to_sql(sql_dialect)
def <=>(other)
return NOT_COMPARABLE if other.class != T.unsafe(self).class

T.unsafe(self).class.decorator.props.keys.each do |attribute_key|
T.unsafe(self).class.decorator.props.each_key do |attribute_key|
a = T.unsafe(self).send(attribute_key)
b = other.send(attribute_key)
compare_result = (
Expand Down

0 comments on commit 0937495

Please sign in to comment.