We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e9e7ed commit 67038d2Copy full SHA for 67038d2
sysproduction/interactive_update_roll_status.py
@@ -599,7 +599,8 @@ def roll_adjusted_and_multiple_prices(
599
600
601
def get_roll_adjusted_multiple_prices_object(
602
- data: dataBlob, instrument_code: str
+ data: dataBlob,
603
+ instrument_code: str,
604
) -> rollingAdjustedAndMultiplePrices:
605
606
## returns failure if goes wrong
@@ -609,6 +610,7 @@ def get_roll_adjusted_multiple_prices_object(
609
610
)
611
## We do this as getting the object doesn't guarantee it works
612
_unused_ = rolling_adj_and_mult_object.updated_multiple_prices
613
+ _unused_ = rolling_adj_and_mult_object.new_adjusted_prices
614
615
except Exception as e:
616
print("Error %s when trying to calculate roll prices" % str(e))
0 commit comments