[pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci
This commit is contained in:
pre-commit-ci[bot] 2024-07-19 08:21:07 +00:00
parent 4c46c57fec
commit 086d46cdb4
2 changed files with 9 additions and 12 deletions

View File

@ -1106,7 +1106,9 @@ def build_transport_data(
# clean up dataframe
years = np.arange(2000, 2022)
transport_data = transport_data[transport_data.index.get_level_values(1).isin(years)]
transport_data = transport_data[
transport_data.index.get_level_values(1).isin(years)
]
missing = transport_data.index[transport_data["number cars"].isna()]
if not missing.empty:

View File

@ -10,19 +10,18 @@ import logging
import os
import zipfile
from pathlib import Path
from _helpers import configure_logging, progress_retrieve, set_scenario_config
from _helpers import configure_logging, progress_retrieve, set_scenario_config
logger = logging.getLogger(__name__)
# Define the base URL
url_jrc = (
"https://jeodpp.jrc.ec.europa.eu/ftp/jrc-opendata/JRC-IDEES/JRC-IDEES-2021_v1/JRC-IDEES-2021.zip"
)
url_jrc = "https://jeodpp.jrc.ec.europa.eu/ftp/jrc-opendata/JRC-IDEES/JRC-IDEES-2021_v1/JRC-IDEES-2021.zip"
if __name__ == "__main__":
if "snakemake" not in globals():
from _helpers import mock_snakemake
snakemake = mock_snakemake("retrieve_jrc_idees")
rootpath = ".."
else:
@ -36,9 +35,7 @@ if __name__ == "__main__":
to_fn_zp = to_fn + ".zip"
# download .zip file
logger.info(
f"Downloading JRC IDEES from {url_jrc}."
)
logger.info(f"Downloading JRC IDEES from {url_jrc}.")
progress_retrieve(url_jrc, to_fn_zp, disable=disable_progress)
# extract
@ -47,5 +44,3 @@ if __name__ == "__main__":
zip_ref.extractall(to_fn)
logger.info(f"JRC IDEES data available in '{to_fn}'.")