Skip to content

Commit

Permalink
Merge pull request #46 from stephenhky/develop
Browse files Browse the repository at this point in the history
token path error in `retrieve_stock_symbols` fixed
  • Loading branch information
stephenhky committed Jan 19, 2024
2 parents 46d4f0e + 7949f4f commit e58d04a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion script/retrieve_stock_symbols
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ if __name__ == '__main__':
if finnhub_token is None:
raise ValueError('Finnhub tokens not found in the environment variable $FINNHUBTOKEN.')
else:
finnhub_token = open('finnhub.tokens', 'r').read().strip()
finnhub_token = open(args.finnhubtokenpath, 'r').read().strip()

# initialize FinnHub reader
finnreader = FinnHubStockReader(finnhub_token)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def package_description():

setup(
name='finsim',
version="0.11.2",
version="0.11.3a1",
description="Financial simulation and inference",
long_description=package_description(),
long_description_content_type='text/markdown',
Expand Down

0 comments on commit e58d04a

Please sign in to comment.