wrong function call

This commit is contained in:
Pablo Martin 2024-06-11 20:44:03 +02:00
parent 2701a08cdd
commit 126ede37a4

View file

@ -24,7 +24,7 @@ class ExchangeRate:
return ( return (
str(self.from_currency.value) str(self.from_currency.value)
+ str(self.to_currency.value) + str(self.to_currency.value)
+ str(self.rate_date.strformat("%Y-%m-%d")) + str(self.rate_date.strftime("%Y-%m-%d"))
) )