Skip to content

Commit ed951f6

Browse files
author
Benjamin Moody
committed
wfdb.plot.plot: rename plot_signal to _plot_signal.
This function is not in the wfdb module, is not listed in the documentation, and shouldn't be used by applications directly.
1 parent 6dceafe commit ed951f6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

wfdb/plot/plot.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ def plot_items(
259259
fig, axes = _create_figure(n_subplots, sharex, sharey, figsize)
260260
try:
261261
if signal is not None:
262-
plot_signal(
262+
_plot_signal(
263263
signal,
264264
sig_len,
265265
n_sig,
@@ -425,7 +425,7 @@ def _create_figure(n_subplots, sharex, sharey, figsize):
425425
return fig, axes
426426

427427

428-
def plot_signal(
428+
def _plot_signal(
429429
signal, sig_len, n_sig, fs, time_units, sig_style, axes, sampling_freq=None
430430
):
431431
"""

0 commit comments

Comments
 (0)