audit-labs/audit-tools

A collection of scripts, queries, and other goodies you can use in an audit.

clone: git clone https://gitbay.org/audit-labs/audit-tools.git

2f1bb3400c76edce98eaa11a9601b06d5d18fac2

verified · cmc

author: Christian Cleberg <hello@cleberg.net> · 2024-10-19T16:51:19Z

missed a couple pylint fixes in comments
 sampling/sample.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sampling/sample.py b/sampling/sample.py
index f8ea211..7f74285 100644
--- a/sampling/sample.py
+++ b/sampling/sample.py
@@ -30,5 +30,5 @@ print("Sample:\n", sample)
 # larger than the population, you will need to use the `replace=True` parameter.
 #
 # # Sample Size: 25 + 5 replacement samples
-# sample_size = 30
-# sample = df.sample(30, replace=True)
+# SAMPLE_SIZE = 30
+# sample = df.sample(SAMPLE_SIZE, replace=True)