mirror of
https://github.com/stijndcl/didier.git
synced 2026-04-15 03:25:48 +02:00
Merge pull request #139 from stijndcl/fix-missing-formatting
Add missing format specifier
This commit is contained in:
commit
625429daff
1 changed files with 1 additions and 1 deletions
|
|
@ -67,7 +67,7 @@ class CovidData(EmbedPydantic):
|
||||||
recovered_indicator = self._trend_indicator(self.today.today_recovered, self.yesterday.today_recovered)
|
recovered_indicator = self._trend_indicator(self.today.today_recovered, self.yesterday.today_recovered)
|
||||||
embed.add_field(
|
embed.add_field(
|
||||||
name="Recovered (Today)",
|
name="Recovered (Today)",
|
||||||
value=f"{self.today.recovered} **({self.today.today_recovered:,})** {recovered_indicator}".replace(
|
value=f"{self.today.recovered:,} **({self.today.today_recovered:,})** {recovered_indicator}".replace(
|
||||||
",", "."
|
",", "."
|
||||||
),
|
),
|
||||||
inline=False,
|
inline=False,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue