Skip to content
This repository has been archived by the owner on Jun 13, 2024. It is now read-only.

Removed locale set #44

Merged
merged 1 commit into from
Sep 2, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions automsr/mail.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,6 @@ def to_plain_text(self) -> str:
Return a plain-text representation of the status.
"""

import locale

locale.setlocale(locale.LC_NUMERIC, "")

points_str = "N/A" if self.status.points is None else f"{self.status.points:,}"

retval: List[str] = [
Expand Down