Skip to content
Snippets Groups Projects
Commit 79cdf3d9 authored by Françoise Conil's avatar Françoise Conil
Browse files

Remove dash from project name and directory

parent 178f16ea
No related branches found
No related tags found
No related merge requests found
......@@ -3,7 +3,7 @@ requires = ["flit_core>=3.2"]
build-backend = "flit_core.buildapi"
[project]
name = "import-resources-example"
name = "import_resources_example"
version = "0.0.1"
authors = [
{ name="Françoise CONIL", email="francoise.conil@cnrs.fr" },
......
......@@ -47,7 +47,7 @@ def get_oms_data():
"""
studies = []
with resources.open_text("example_package_import.data", "COVID19-web.27-07-2022.csv") as f:
with resources.open_text("import_resources_example.data", "COVID19-web.27-07-2022.csv") as f:
rows = csv.DictReader(f)
for row in rows:
......
......@@ -7,7 +7,7 @@ def extract_population_general_info():
locations = set()
with resources.open_text("example_package_import.data", "WPP2022_TotalPopulationBySex.csv") as f:
with resources.open_text("import_resources_example.data", "WPP2022_TotalPopulationBySex.csv") as f:
rows = csv.DictReader(f)
for row in rows:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment