Skip to content

Commit

Permalink
MNT: Fix new flake8 warning E741
Browse files Browse the repository at this point in the history
  • Loading branch information
kernc committed May 20, 2020
1 parent 7010d68 commit b460092
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backtesting/backtesting.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def _check_params(self, params):
setattr(self, k, v)
return params

def I(self, # noqa: E743
def I(self, # noqa: E741, E743
func: Callable, *args,
name=None, plot=True, overlay=None, color=None, scatter=False,
**kwargs) -> np.ndarray:
Expand Down

0 comments on commit b460092

Please sign in to comment.