Merge pull request #1509 from freqtrade/test/flake_mock

Add flake8 plugins
This commit is contained in:
Samuel Husso 2019-01-23 09:06:24 +02:00 committed by GitHub
commit fd94b322be
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 2 deletions

View File

@ -34,7 +34,7 @@ class FreqtradeBot(object):
This is from here the bot start its logic.
"""
def __init__(self, config: Dict[str, Any])-> None:
def __init__(self, config: Dict[str, Any]) -> None:
"""
Init all variables and object the bot need to work
:param config: configuration dict, you can use the Configuration.get_config()

View File

@ -13,7 +13,7 @@ from typing import Any, Dict, List, NamedTuple, Optional
from pandas import DataFrame
from tabulate import tabulate
import freqtrade.optimize as optimize
from freqtrade import optimize
from freqtrade import DependencyException, constants
from freqtrade.arguments import Arguments
from freqtrade.configuration import Configuration

View File

@ -2,6 +2,8 @@
-r requirements.txt
flake8==3.6.0
flake8-type-annotations==0.1.0
flake8-tidy-imports==1.1.0
pytest==4.1.1
pytest-mock==1.10.0
pytest-asyncio==0.10.0