Skip to content

Commit 4e864df

Browse files
committed
fix: Remove unneeded format
1 parent a7152b8 commit 4e864df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ckanext/dcatapchharvest/dcat_helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,7 @@ def get_language_uri_map():
409409
lang_map = {}
410410

411411
for desc in root.findall('.//rdf:Description', ns):
412-
uri = desc.attrib.get('{' + ns["rdf"] + '}about'.format(ns["rdf"]))
412+
uri = desc.attrib.get('{' + ns["rdf"] + '}about')
413413
notation = desc.find('skos:notation', ns)
414414
if uri and notation is not None:
415415
lang_code = notation.text.strip().lower()

0 commit comments

Comments
 (0)