diff --git a/google_stocks/__init__.py b/google_stocks/__init__.py index f0c24f2..24a6cbb 100644 --- a/google_stocks/__init__.py +++ b/google_stocks/__init__.py @@ -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}"