def call_quote(self, other_args: List[str]):
     """Process quote command"""
     stocks_helper.quote(
         other_args, self.ticker + "." + self.suffix if self.suffix else self.ticker
     )
def test_quote():
    stocks_helper.quote(["GME"], "GME")