Skip to content

Commit 1a8818f

Browse files
committed
Lint
1 parent 9a5b791 commit 1a8818f

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

pandas/formats/common.py

-2
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,3 @@ def get_level_lengths(levels, sentinel=''):
3636
result.append(lengths)
3737

3838
return result
39-
40-

pandas/formats/excel.py

+1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ def __init__(self, row, col, val, style=None, mergestart=None,
3535
self.mergestart = mergestart
3636
self.mergeend = mergeend
3737

38+
3839
header_style = {"font": {"bold": True},
3940
"borders": {"top": "thin",
4041
"right": "thin",

pandas/tests/formats/test_css.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ def test_css_parse_comments():
3636

3737
@pytest.mark.xfail
3838
def test_css_parse_specificity():
39-
# we don't need to handle specificity markers like !important, but we should ignore them
39+
# we don't need to handle specificity markers like !important,
40+
# but we should ignore them
4041
pass
4142

4243

@@ -229,5 +230,3 @@ def test_css_relative_font_size(size, relative_to, resolved):
229230

230231
def test_css_font_size_invalid():
231232
pass # TODO
232-
233-

0 commit comments

Comments
 (0)