Skip to content

Commit 0937495

Browse files
committed
Lint
1 parent 52192be commit 0937495

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/overpass_parser/nodes/selectors.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ def to_sql(sql_dialect)
104104
def <=>(other)
105105
return NOT_COMPARABLE if other.class != T.unsafe(self).class
106106

107-
T.unsafe(self).class.decorator.props.keys.each do |attribute_key|
107+
T.unsafe(self).class.decorator.props.each_key do |attribute_key|
108108
a = T.unsafe(self).send(attribute_key)
109109
b = other.send(attribute_key)
110110
compare_result = (

0 commit comments

Comments
 (0)