diff --git a/listing.py b/listing.py index 84027af..17d2efd 100644 --- a/listing.py +++ b/listing.py @@ -106,7 +106,7 @@ class YahooAuctionsItem: self.updating = False def price_jpy(self): - return f"¥{self.price:.2f}" + return f"¥{self.price:.0f}" def price_aud(self, rate = 75.0): return f"${self.price / rate:.2f}"