Update build_biomass_transport_costs.py

change snakemake output file format
This commit is contained in:
lisazeyen 2021-09-24 14:59:53 +02:00 committed by GitHub
parent 2e2a66ef3c
commit b391aa6475
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -82,7 +82,7 @@ def build_biomass_transport_costs():
# add missing Norway with data from Sweden
transport_costs["NO"] = transport_costs["SE"]
transport_costs.to_csv(snakemake.output.transport_costs)
transport_costs.to_csv(snakemake.output[0])
if __name__ == "__main__":