Fixed denumpy
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Pünkösd Marcell 2020-09-24 17:50:26 +02:00
parent 05ddbea0ba
commit edbcefee93

View File

@ -51,7 +51,7 @@ def worker_watchdog(outqueue, id):
def denumpy_result(numpy_type) -> list: def denumpy_result(numpy_type) -> list:
denumyed = [] denumyed = []
for i in numpy_type: for i in numpy_type:
denumyed = int(i) denumyed.append(int(i))
return denumyed return denumyed