Don't include bad state in one line output

This commit is contained in:
Edward Betts 2023-11-25 16:05:17 +00:00
parent 1a5ed90fc1
commit 4638c710d5

View file

@ -146,7 +146,4 @@ class Index:
@property
def one_line(self) -> str:
"""Index name, price and price change."""
return (
f"{self.title}: {self.price} ({self.percent_change}%) "
+ f"{self.state} {self.timestamp}"
)
return f"{self.title}: {self.price} ({self.percent_change}%) {self.timestamp}"