huge cleanup of codestyle and other linter warnings. should be no functional changes.

This commit is contained in:
Edwin Eefting
2020-08-27 22:33:00 +02:00
parent e65d1ac860
commit 4918a2c055
6 changed files with 822 additions and 796 deletions

View File

@ -1,4 +1,5 @@
from basetest import *
import pprint
#randint is different in python 2 vs 3
randint_compat = lambda lo, hi: lo + int(random.random() * (hi + 1 - lo))