linter fix

This commit is contained in:
lukew3
2020-11-20 20:44:00 -05:00
parent 65d5902d90
commit ab8e1d57d2
2 changed files with 2 additions and 1 deletions

View File

@@ -35,6 +35,6 @@ class Generator:
def getGenList():
correctedList = genList[-1:] + genList[:-1]
#Orders list by id
# Orders list by id
correctedList.sort()
return correctedList

View File

@@ -1,6 +1,7 @@
from .__init__ import *
import random
def meanMedianFunc(maxlen=10):
randomlist = random.sample(range(1, 99), maxlen)
total = 0