Skip to content

Commit

Permalink
STY: fix space for PEP8 compliance
Browse files Browse the repository at this point in the history
  • Loading branch information
marketneutral authored and twiecki committed Oct 1, 2018
1 parent 0d28c87 commit 056ab17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyfolio/pos.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ def extract_pos(positions, cash):
if ZIPLINE:
for asset in values.columns:
if type(asset) in [Equity, Future]:
values[asset] = values[asset]*asset.price_multiplier
values[asset] = values[asset] * asset.price_multiplier

values = values.join(cash).fillna(0)

Expand Down

0 comments on commit 056ab17

Please sign in to comment.