From 771a5ea26be7deb8210e9a7b6a11d6718fab21e3 Mon Sep 17 00:00:00 2001 From: Janne Sinivirta Date: Sun, 17 Dec 2017 14:42:41 +0200 Subject: [PATCH] fix plot_dataframe.py lint warnings --- scripts/plot_dataframe.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/scripts/plot_dataframe.py b/scripts/plot_dataframe.py index 0890a650e..03f8433cf 100755 --- a/scripts/plot_dataframe.py +++ b/scripts/plot_dataframe.py @@ -1,11 +1,11 @@ #!/usr/bin/env python3 import matplotlib # Install PYQT5 manually if you want to test this helper function -matplotlib.use("Qt5Agg") import matplotlib.pyplot as plt - from freqtrade import exchange, analyze +matplotlib.use("Qt5Agg") + def plot_analyzed_dataframe(pair: str) -> None: """ @@ -52,4 +52,3 @@ def plot_analyzed_dataframe(pair: str) -> None: if __name__ == '__main__': plot_analyzed_dataframe('BTC_ETH') -