chore: make return None statement explicit in format_rating

Signed-off-by: mctaylors <cantsendmails@mctaylors.ru>
This commit is contained in:
Macintxsh 2025-05-18 10:30:53 +03:00
parent 35ea45d9c7
commit f2b6a2ee8f

View file

@ -28,3 +28,4 @@ def format_rating(value: str) -> str | None:
case "e": case "e":
# Negative Squared Latin Capital Letter E # Negative Squared Latin Capital Letter E
return "🅴" return "🅴"
return None