From be31942327676002180efb77832066651a35e7d6 Mon Sep 17 00:00:00 2001 From: Kevin Dougherty Date: Thu, 30 May 2024 14:08:18 +0000 Subject: [PATCH] fixed files that were not passing pycodestyle tests --- src/tests/test_plots.py | 2 +- src/tests/test_stats.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tests/test_plots.py b/src/tests/test_plots.py index 856f1e2d..240593d9 100644 --- a/src/tests/test_plots.py +++ b/src/tests/test_plots.py @@ -2,7 +2,7 @@ from scipy.ndimage.filters import gaussian_filter import matplotlib.pyplot as plt -from emcpy.plots.plots import LinePlot, VerticalLine,\ +from emcpy.plots.plots import LinePlot, VerticalLine, \ Histogram, Density, Scatter, HorizontalLine, BarPlot, \ GriddedPlot, ContourPlot, FilledContourPlot, HorizontalBar, \ BoxandWhiskerPlot, HorizontalSpan, SkewT diff --git a/src/tests/test_stats.py b/src/tests/test_stats.py index 8f47b3d8..8db61692 100644 --- a/src/tests/test_stats.py +++ b/src/tests/test_stats.py @@ -1,4 +1,4 @@ -from emcpy.stats.stats import mstats, lregress, ttest, get_weights,\ +from emcpy.stats.stats import mstats, lregress, ttest, get_weights, \ get_linear_regression, bootstrap, calc_bins import numpy as np