Skip to content

Commit bfbfd7b

Browse files
committed
unsplit line II
1 parent 05f5737 commit bfbfd7b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lambdas/mesh_processor/src/converter.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616

1717

1818
def parse_headers(headers_str: str) -> dict[str, str]:
19-
headers = dict(
19+
headers = dict( # NOSONAR(S7494) force this to dict
2020
header_str.split(":", 1) for header_str in headers_str.split("\r\n") if ":" in header_str
21-
) # NOSONAR(S7494) force this to dict
21+
)
2222
return {k.strip(): v.strip() for k, v in headers.items()}
2323

2424

0 commit comments

Comments
 (0)