Skip to content

Commit

Permalink
Fix Spain CC scheme download.
Browse files Browse the repository at this point in the history
  • Loading branch information
J08nY committed Jul 19, 2024
1 parent e42f5ca commit 958effe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sec_certs/sample/cc_scheme.py
Original file line number Diff line number Diff line change
Expand Up @@ -1306,7 +1306,7 @@ def get_spain_certified() -> list[dict[str, Any]]:
"product_link": urljoin(constants.CC_SPAIN_BASE_URL, tds[0].find("a")["href"]),
"category": sns(tds[1].text),
"manufacturer": sns(tds[2].text),
"certification_date": sns(tds[3].find("td", class_="djc_value").text),
"certification_date": sns(tds[3].text),
}
results.append(cert)
return results
Expand Down

0 comments on commit 958effe

Please sign in to comment.