Compare commits
No commits in common. "381c2642d6e11b4ec337f9040747dbd0aef9c971" and "f36dc353df75a695de634e6e2e5f6a59f810470e" have entirely different histories.
381c2642d6
...
f36dc353df
1 changed files with 1 additions and 2 deletions
|
@ -60,7 +60,6 @@ class YahooAuctionsItem:
|
|||
self.original_name = None
|
||||
self.favourite = None
|
||||
self.end_date = None
|
||||
self.bids = 0
|
||||
|
||||
if url == None and from_json != None and id != None:
|
||||
self.id = id
|
||||
|
@ -107,7 +106,7 @@ class YahooAuctionsItem:
|
|||
self.updating = False
|
||||
|
||||
def price_jpy(self):
|
||||
return f"¥{self.price:.0f}"
|
||||
return f"¥{self.price:.2f}"
|
||||
|
||||
def price_aud(self, rate = 75.0):
|
||||
return f"${self.price / rate:.2f}"
|
||||
|
|
Loading…
Reference in a new issue