obendidi/pstock

Documentation Typo in Quickstart

peter-lillie opened this issue · 1 comments

Original:

from pstock import Asset

assets = asyncio.run(Assets.get(["TSLA", "AAPL", "GME"]))
print(assets)
...

Proposed:

from pstock import Assets

assets = asyncio.run(Assets.get(["TSLA", "AAPL", "GME"]))
print(assets)
...

Adopted proposed with pull #60