robinhood-unofficial / pyrh

Python Framework to make trades with the unofficial Robinhood API
https://pyrh.readthedocs.io/en/latest/
MIT License
1.78k stars 603 forks source link

fixed get_quote_list #219

Closed JamMarHer closed 4 years ago

JamMarHer commented 4 years ago

Error:

myStr += stock[item] + ","
TypeError: unsupported operand type(s) for +: 'int' and 'str'

Fix:

myStr += f"{stock[item]},"