You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am not sure why the code seems to expect a tuple... if I read the source of the methods the pair (database,code) is a list, not a tuple 🤔
lcia_path = (Path.cwd()/'bw2io'/'data'/'lcia'/"lcia_39_ecoinvent.zip")
with zipfile.ZipFile(lcia_path, mode="r") as archive:
data = json.load(archive.open("data.json"))
for method in data:
method["name"] = tuple(method["name"])
for d in data:
for e in d['exchanges']:
assert isinstance(e['input'],list)
I am testing bw2io 0.9.DEV38 and if I try to run bw2setup in a new project I get a ValueError
Can't understand elementary flow identifier ['biosphere3', '9990b51b-7023-4700-bca0-1a32ef921f74']
I am using bw2data version (4, 0, 'dev55')
@tngTUDOR
The text was updated successfully, but these errors were encountered: