i think i hav repaired for current stuff

This commit is contained in:
2023-01-13 09:21:23 +01:00
parent ee444cb56c
commit 200bb5da79
5 changed files with 27 additions and 21 deletions

View File

@@ -7,8 +7,8 @@ def convert_econ_to_gym(econ):
def convert_gym_to_econ(gy):
econ={}
for k,v in gy:
econ[k]=v
for k in range(len(gy)):
econ[k]=gy[k]
return econ