Skip to content

Commit

Permalink
Remove reference to unused error variable.
Browse files Browse the repository at this point in the history
  • Loading branch information
twiecki committed Dec 18, 2018
1 parent 3568fec commit 2b00f1d
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 @@ -21,7 +21,7 @@
try:
from zipline.assets import Equity, Future
ZIPLINE = True
except ImportError as error:
except ImportError:
ZIPLINE = False
warnings.warn(
'Module "zipline.assets" not found; mutltipliers will not be applied' +
Expand Down

0 comments on commit 2b00f1d

Please sign in to comment.