Skip to content

Commit

Permalink
fix: update stock symbols
Browse files Browse the repository at this point in the history
  • Loading branch information
SlashGordon committed Jan 8, 2021
1 parent 4e82264 commit 2667419
Show file tree
Hide file tree
Showing 3 changed files with 10,149 additions and 1,973 deletions.
2 changes: 1 addition & 1 deletion src/pytickersymbols/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def __init__(self, stocks_path=''):
'data',
'stocks.json',
)
with open(json_path) as stocks:
with open(json_path, errors='replace') as stocks:
self.__stocks = json.load(stocks)
else:
if stocks_path.lower().endswith(
Expand Down

0 comments on commit 2667419

Please sign in to comment.