Skip to content

Commit 752087e

Browse files
pre-commit-ci[bot]henryiii
authored andcommitted
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 29da039 commit 752087e

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/uproot_browser/tui/browser.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,10 @@
1717

1818
with contextlib.suppress(AttributeError):
1919
light_background = 0xDF, 0xDF, 0xDF # $surface-darken-1
20-
plt._dict.themes["default"][0] = light_background # pylint: disable=protected-access
21-
plt._dict.themes["default"][1] = light_background # pylint: disable=protected-access
20+
# pylint: disable-next=protected-access
21+
plt._dict.themes["default"][0] = light_background
22+
# pylint: disable-next=protected-access
23+
plt._dict.themes["default"][1] = light_background
2224

2325

2426
from uproot_browser.exceptions import EmptyTreeError

0 commit comments

Comments
 (0)