We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29da039 commit 752087eCopy full SHA for 752087e
src/uproot_browser/tui/browser.py
@@ -17,8 +17,10 @@
17
18
with contextlib.suppress(AttributeError):
19
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
+ # pylint: disable-next=protected-access
+ plt._dict.themes["default"][0] = light_background
22
23
+ plt._dict.themes["default"][1] = light_background
24
25
26
from uproot_browser.exceptions import EmptyTreeError
0 commit comments