Skip to content

Commit

Permalink
Bug fix in market.py for constants
Browse files Browse the repository at this point in the history
  • Loading branch information
saeedamen committed Apr 16, 2020
1 parent b5bede1 commit af326aa
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,8 @@ In findatapy/examples you will find several demos

# Coding log

* 07 Apr 2020
* Bug fix in constants
* 06 Apr 2020
* Minor changes to ConfigManager
* 05 Apr 2020
Expand Down
2 changes: 1 addition & 1 deletion findatapy/market/market.py
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ def get_fx_cross(self, start, end, cross,
data_frame_agg = []

# depends on the nature of operation as to whether we should use threading or multiprocessing library
if constantsmarket_thread_technique is "thread":
if constants.market_thread_technique is "thread":
from multiprocessing.dummy import Pool
else:
# most of the time is spend waiting for Bloomberg to return, so can use threads rather than multiprocessing
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
tickers, using configuration files. There is also functionality which is particularly useful for those downloading FX market data."""

setup(name='findatapy',
version='0.1.10',
version='0.1.11',
description='Market data library',
author='Saeed Amen',
author_email='saeed@cuemacro.com',
Expand Down

0 comments on commit af326aa

Please sign in to comment.