Skip to content

Commit c106c5b

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent cfef187 commit c106c5b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/io/formats/css.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
Iterator,
2020
)
2121

22+
2223
def _lowercase_outside_quotes(value: str) -> str:
2324
parts = re.split(r'(".*?")', value)
2425
new_parts = []
@@ -27,7 +28,7 @@ def _lowercase_outside_quotes(value: str) -> str:
2728
new_parts.append(part) # preserve case
2829
else:
2930
new_parts.append(part.lower())
30-
return ''.join(new_parts)
31+
return "".join(new_parts)
3132

3233

3334
def _side_expander(prop_fmt: str) -> Callable:

0 commit comments

Comments
 (0)