Skip to content

Commit e33a424

Browse files
committed
fix: remove empty anchor tags from rendered markdown
Fixes #4237 Signed-off-by: Vasu <[email protected]>
1 parent 66d2251 commit e33a424

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

osv/sources.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
import hashlib
1818
import logging
1919
import os
20-
import re
2120

2221
import jsonschema
2322
import pygit2
@@ -166,7 +165,6 @@ def _get_nested_vulnerability(data, key_path=None):
166165
def parse_vulnerability_from_dict(data, key_path=None, strict=False):
167166
"""Parse vulnerability from dict."""
168167
data = _get_nested_vulnerability(data, key_path)
169-
170168
try:
171169
jsonschema.validate(data, load_schema())
172170
except jsonschema.exceptions.ValidationError as e:

0 commit comments

Comments
 (0)