Skip to content

Commit 209a853

Browse files
committed
black -l 100
Signed-off-by: Hritik Vijay <hritikxx8@gmail.com>
1 parent 87122ef commit 209a853

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

vulnerabilities/helpers.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -127,9 +127,9 @@ def split_markdown_front_matter(text: str) -> Tuple[str, str]:
127127
front_matter = ""
128128
body = text
129129
text = text.replace("\r\n", "\n")
130-
linezero,_, text = text.partition("---\n")
130+
linezero, _, text = text.partition("---\n")
131131

132-
if not linezero: # nothing before first ---
133-
front_matter,_, body = text.partition("---")
132+
if not linezero: # nothing before first ---
133+
front_matter, _, body = text.partition("---")
134134

135135
return front_matter, body

0 commit comments

Comments
 (0)