From 8db232e47568debde32aa8deff6e2ebbd703dcdc Mon Sep 17 00:00:00 2001 From: AbdulSafdar Date: Thu, 9 Jan 2025 15:01:32 -0800 Subject: [PATCH] added line at the end of rnorm.py to indicate that future code will be added later --- src/pystats/rnorm.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/pystats/rnorm.py b/src/pystats/rnorm.py index f341cf9..540f4cc 100644 --- a/src/pystats/rnorm.py +++ b/src/pystats/rnorm.py @@ -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 @@ -22,4 +22,5 @@ def rnorm(n, mean=0, sd=1): ------- >>> rnorm(2, mean=5, sd=2) array([6.3245, 4.5983]) - """ \ No newline at end of file + """ + pass \ No newline at end of file