From 7e6cf5694bc6167db3c1fedaa695036025186e07 Mon Sep 17 00:00:00 2001 From: Shlomi Fish Date: Fri, 29 May 2020 15:30:38 +0300 Subject: [PATCH] remove unused and bad "tests" - see tests/ --- pysollib/pysolrandom.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/pysollib/pysolrandom.py b/pysollib/pysolrandom.py index f3b05ebc..341fad84 100644 --- a/pysollib/pysolrandom.py +++ b/pysollib/pysolrandom.py @@ -82,11 +82,3 @@ def constructRandom(s): # print("MTRandom", seed) ret = pysol_cards.random.MTRandom(seed) return ret - - -# test -if __name__ == '__main__': - r = constructRandom('12345') - print(r.randint(0, 100)) - print(r.random()) - print(type(r))