Don't inherit from object

This commit is contained in:
hroff-1902
2019-09-12 04:39:52 +03:00
parent f987e6e0f9
commit 849d694c27
12 changed files with 13 additions and 13 deletions

View File

@@ -44,7 +44,7 @@ ARGS_PLOT_PROFIT = ["pairs", "timerange", "export", "exportfilename", "db_url",
NO_CONF_REQURIED = ["download-data", "plot-dataframe", "plot-profit"]
class Arguments(object):
class Arguments:
"""
Arguments Class. Manage the arguments received by the cli
"""

View File

@@ -22,7 +22,7 @@ from freqtrade.state import RunMode
logger = logging.getLogger(__name__)
class Configuration(object):
class Configuration:
"""
Class to read and init the bot configuration
Reuse this class for the bot, backtesting, hyperopt and every script that required configuration