Skip to content

Commit

Permalink
fix: Correct filename typo in non-proprietary CSV and remove obsolete…
Browse files Browse the repository at this point in the history
… file
  • Loading branch information
mjanez committed Jan 9, 2025
1 parent 4c77039 commit 6820846
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 33 deletions.
31 changes: 0 additions & 31 deletions ckan2mqa/assets/vocabs/non-propietary.csv

This file was deleted.

2 changes: 1 addition & 1 deletion ckan2mqa/assets/vocabs/non-proprietary.csv
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ http://publications.europa.eu/resource/authority/file-type/TSV,TSV
http://publications.europa.eu/resource/authority/file-type/TXT,TXT
http://publications.europa.eu/resource/authority/file-type/WMS_SRVC,WMS_SRVC
http://publications.europa.eu/resource/authority/file-type/XML,XML
http://publications.europa.eu/resource/authority/file-type/ZIP,ZIP
http://publications.europa.eu/resource/authority/file-type/ZIP,ZIP
2 changes: 1 addition & 1 deletion ckan2mqa/controller/download_vocabs.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def extract_description(self, rdf_content, rdf_url):
non_proprietary_data.add((uri, label))

# Save non-proprietary data to separate CSV
non_proprietary_file_name = "non-propietary.csv"
non_proprietary_file_name = "non-proprietary.csv"
save_to_csv(non_proprietary_data, VOCABS_DIR / non_proprietary_file_name)
logging.info(f"{log_module}:Non-proprietary data extracted and saved to {non_proprietary_file_name}")

Expand Down

0 comments on commit 6820846

Please sign in to comment.