This commit is contained in:
Remi Ehounou
2021-05-24 00:57:56 -04:00
parent 4f614b958e
commit def10e704b
2 changed files with 2 additions and 1 deletions

1
.gitignore vendored
View File

@ -10,6 +10,7 @@
*.sig *.sig
*.py.old *.py.old
*.cpython-38.pyc *.cpython-38.pyc
*.cpython-39.pyc
pkg/ pkg/
src/ src/

View File

@ -96,7 +96,7 @@ def measure(heuristicpath, funcpath, args, connection):
lower = funcChars['lower'] lower = funcChars['lower']
if upper is not list: if upper is not list:
print(type(upper) print(type(upper))
upper = [upper for i in range(n)] upper = [upper for i in range(n)]
if lower is not list: lower = [lower for i in range(n)] if lower is not list: lower = [lower for i in range(n)]