[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
This commit is contained in:
parent
5260e0c71f
commit
54f0cde490
@ -179,7 +179,9 @@ def add_non_eu28_industrial_energy_demand(demand):
|
|||||||
|
|
||||||
def industrial_energy_demand(countries, year):
|
def industrial_energy_demand(countries, year):
|
||||||
nprocesses = snakemake.threads
|
nprocesses = snakemake.threads
|
||||||
func = partial(industrial_energy_demand_per_country, year=year, jrc_dir=snakemake.input.jrc)
|
func = partial(
|
||||||
|
industrial_energy_demand_per_country, year=year, jrc_dir=snakemake.input.jrc
|
||||||
|
)
|
||||||
tqdm_kwargs = dict(
|
tqdm_kwargs = dict(
|
||||||
ascii=False,
|
ascii=False,
|
||||||
unit=" country",
|
unit=" country",
|
||||||
|
@ -247,7 +247,10 @@ def industry_production_per_country(country, year, eurostat_dir, jrc_dir):
|
|||||||
def industry_production(countries, year, eurostat_dir, jrc_dir):
|
def industry_production(countries, year, eurostat_dir, jrc_dir):
|
||||||
nprocesses = 1 # snakemake.threads
|
nprocesses = 1 # snakemake.threads
|
||||||
func = partial(
|
func = partial(
|
||||||
industry_production_per_country, year=year, eurostat_dir=eurostat_dir, jrc_dir=jrc_dir
|
industry_production_per_country,
|
||||||
|
year=year,
|
||||||
|
eurostat_dir=eurostat_dir,
|
||||||
|
jrc_dir=jrc_dir,
|
||||||
)
|
)
|
||||||
tqdm_kwargs = dict(
|
tqdm_kwargs = dict(
|
||||||
ascii=False,
|
ascii=False,
|
||||||
|
Loading…
Reference in New Issue
Block a user