We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f61af4b commit e0254f2Copy full SHA for e0254f2
1 file changed
docs/source-id-landing-pages/auto-generate-source-id-pages.py
@@ -73,6 +73,8 @@ def get_assumed_unique_value(invs: list[Any]) -> Any:
73
f"- contact: {info['contact']}",
74
f"- further_info_url: {info['further_info_url']}",
75
]
76
+ with open(HERE / source_id_filename, "w") as fh:
77
+ fh.write("\n".join(to_write))
78
79
citation_info = {}
80
contributors_l = []
@@ -122,7 +124,7 @@ def get_assumed_unique_value(invs: list[Any]) -> Any:
122
124
if creation_years:
123
125
creation_year = get_assumed_unique_value(creation_years)
126
else:
- breakpoint()
127
+ raise NotImplementedError
128
129
creation_dates = (
130
db_source_id["creation_date"]
0 commit comments