Skip to content

Commit

Permalink
[FIX] base_phone: Line too long
Browse files Browse the repository at this point in the history
  • Loading branch information
pedrobaeza committed May 2, 2024
1 parent 600c478 commit 1d22828
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion base_phone/models/phone_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ def get_record_from_phone_number(self, presented_number):
)
if not isinstance(presented_number, str):
_logger.warning(
f"Number {presented_number} should be a 'str' but it is a {type(presented_number)}"
f"Number {presented_number} should be a 'str' but it is a"
f" {type(presented_number)}"
)
return False
if not presented_number.isdigit():
Expand Down

0 comments on commit 1d22828

Please sign in to comment.