Skip to content

Commit

Permalink
Permettre les numéros de téléphone de 5 digits (#1088)
Browse files Browse the repository at this point in the history
  • Loading branch information
kolok authored Dec 4, 2024
1 parent 58320b8 commit aacbe86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dags/utils/mapping_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def process_phone_number(number, code_postal):
if number.startswith("33"):
number = "0" + number[2:]

if len(number) < 6:
if len(number) < 5:
return None

return number
Expand Down

0 comments on commit aacbe86

Please sign in to comment.