Fixed for requires

This commit is contained in:
Dimitris Zlatanidis 2023-03-30 21:34:53 +03:00
parent dd9955d457
commit 7fa5381448

View file

@ -250,7 +250,8 @@ class InstallData(Configs):
location=cache[5],
size_comp=cache[6],
size_uncomp=cache[7],
description=cache[8]
description=cache[8],
required=''
)
self.session.add(data)
@ -336,7 +337,8 @@ class InstallData(Configs):
location=cache[5],
size_comp=cache[6],
size_uncomp=cache[7],
description=cache[8]
description=cache[8],
required='',
)
self.session.add(data)
@ -512,7 +514,8 @@ class InstallData(Configs):
location=cache[5],
size_comp=cache[6],
size_uncomp=cache[7],
description=cache[8]
description=cache[8],
required=''
)
self.session.add(data)