Flake8 changes:

- Ignore error W504 (break line on operator)
	- Ignore unused import in stats.py (used for pandas query)
This commit is contained in:
Juan Pablo Amoroso
2020-03-20 13:24:47 -03:00
parent 2789c206c9
commit 82b6fc6b7b
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
import pandas as pd
import numpy as np
from ..enums import Order
from ..enums import Order # noqa: F401
def summary(trade_log, balance):
+1 -1
View File
@@ -1,6 +1,6 @@
[flake8]
max-line-length = 119
ignore = E126,F403,F405
ignore = E126,F403,F405,W504
[yapf]
based_on_style = pep8