Skip to content

Commit 525708c

Browse files
authored
Use lowercase neutral instead of upper (#596)
1 parent 45152e1 commit 525708c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fire/inspectutils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ def Info(component):
257257
try:
258258
from IPython.core import oinspect # pylint: disable=import-outside-toplevel,g-import-not-at-top
259259
try:
260-
inspector = oinspect.Inspector(theme_name="Neutral")
260+
inspector = oinspect.Inspector(theme_name="neutral")
261261
except TypeError: # Only recent versions of IPython support theme_name.
262262
inspector = oinspect.Inspector()
263263
info = inspector.info(component)

0 commit comments

Comments
 (0)