Skip to content

Commit

Permalink
Fix plot_preds return type
Browse files Browse the repository at this point in the history
The plot_preds function plots the data but doesn't actually return
anything
  • Loading branch information
tianyizheng02 committed Mar 26, 2023
1 parent d0aa4b4 commit 3b24dfe
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ def plot_preds(
y_data: np.ndarray,
x_name: str,
y_name: str,
) -> plt.plot:
) -> None:
"""
Plot predictions and display the graph
>>> pass # No doctests, function is for demo purposes only
Expand Down

0 comments on commit 3b24dfe

Please sign in to comment.