Skip to content

Commit

Permalink
added line at the end of rnorm.py to indicate that future code will b…
Browse files Browse the repository at this point in the history
…e added later
  • Loading branch information
AbdulSafdar committed Jan 9, 2025
1 parent 613045f commit 8db232e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/pystats/rnorm.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def rnorm(n, mean=0, sd=1):
The mean value of the normal distribution. Default is 0.
sd : float, optional
The standard deviation of the normal distribution. Default is 1.
Returns
-------
numpy.ndarray
Expand All @@ -22,4 +22,5 @@ def rnorm(n, mean=0, sd=1):
-------
>>> rnorm(2, mean=5, sd=2)
array([6.3245, 4.5983])
"""
"""
pass

0 comments on commit 8db232e

Please sign in to comment.