Skip to content

Commit c7c5373

Browse files
committed
black -l 100
Signed-off-by: Hritik Vijay <hritikxx8@gmail.com>
1 parent 538e951 commit c7c5373

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

vulnerabilities/helpers.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -186,9 +186,9 @@ def split_markdown_front_matter(text: str) -> Tuple[str, str]:
186186
front_matter = ""
187187
body = text
188188
text = text.replace("\r\n", "\n")
189-
linezero,_, text = text.partition("---\n")
189+
linezero, _, text = text.partition("---\n")
190190

191-
if not linezero: # nothing before first ---
192-
front_matter,_, body = text.partition("---")
191+
if not linezero: # nothing before first ---
192+
front_matter, _, body = text.partition("---")
193193

194194
return front_matter, body

0 commit comments

Comments
 (0)