Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolasleger committed Dec 3, 2024
1 parent e52dd82 commit 269c552
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/quote_reader/naive_text.rb
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,9 @@ def self.find_sirets(text)
end

def self.find_telephones(text)
text.scan(/(?:T[eé]l\.?(?:[eé]phone)#{BETWEEN_LABEL_VALUE_REGEX})?(#{PHONE_REGEX})/i).flatten.filter_map(&:strip).uniq
text.scan(
/(?:T[eé]l\.?(?:[eé]phone)#{BETWEEN_LABEL_VALUE_REGEX})?(#{PHONE_REGEX})/i
).flatten.filter_map(&:strip).uniq
end

def self.find_rcss(text)
Expand Down

0 comments on commit 269c552

Please sign in to comment.