Skip to content

Commit

Permalink
PEP
Browse files Browse the repository at this point in the history
  • Loading branch information
DKilkenny committed Jan 29, 2021
1 parent 31d4a5a commit 8764d0b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions openmdao/core/notebook_mode.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
except ImportError:
tabulate = None


def notebook_mode():
"""
Check if the environment is interactive and if tabulate is installed.
Expand Down
2 changes: 1 addition & 1 deletion openmdao/recorders/sqlite_reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

try:
from IPython.display import HTML, display
except:
except ImportError:
pass

from openmdao.recorders.base_case_reader import BaseCaseReader
Expand Down

0 comments on commit 8764d0b

Please sign in to comment.