Skip to content

Commit

Permalink
Remove unused variables and parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
d31003 committed Feb 8, 2024
1 parent c7107f9 commit 7a66496
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 5 deletions.
2 changes: 0 additions & 2 deletions swarm_visualizer/lineplot.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ def plot_overlaid_ts(
title_str: str = None,
ylabel: str = None,
xlabel: str = "time",
fontsize: float = 30,
xticks=None,
ylim=None,
DEFAULT_ALPHA: float = 1.0,
Expand All @@ -53,7 +52,6 @@ def plot_overlaid_ts(
:param title_str: title of the plot
:param ylabel: y-axis label
:param xlabel: x-axis label
:param fontsize: font size
:param xticks: x-axis ticks
:param ylim: y-axis limits
:param DEFAULT_ALPHA: default alpha value
Expand Down
1 change: 0 additions & 1 deletion swarm_visualizer/scatterplot.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ def plot_scatter_pdf_plot(
ts_y=None,
title_str: str = None,
ylabel: str = None,
lw: float = 3.0,
ylim=None,
xlabel: str = "time",
xlim=None,
Expand Down
1 change: 0 additions & 1 deletion tests/test_lineplot.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,6 @@ def test_overlaid_ts_plot(normalized_ts_dict) -> None:
title_str="Overlaid Time Series Plot",
ylabel="$y$",
xlabel="$x$",
fontsize=30,
xticks=None,
ylim=None,
DEFAULT_ALPHA=1.0,
Expand Down
1 change: 0 additions & 1 deletion tests/test_scatterplot.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ def test_scatter_pdf_plot(x_data, y_data) -> None:
ts_y=y_data,
title_str="Scatter Plot with CDFs",
ylabel="$y$",
lw=3.0,
ylim=None,
xlabel="$x$",
xlim=None,
Expand Down

0 comments on commit 7a66496

Please sign in to comment.