Skip to content

Commit

Permalink
Revert "Update tutorial/10_key_features/005_visualization.py"
Browse files Browse the repository at this point in the history
This reverts commit a559902.
  • Loading branch information
y0z committed Feb 14, 2024
1 parent 21dfd98 commit b3932fb
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tutorial/10_key_features/005_visualization.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,10 @@

try:
import optuna_integration
except ModuleNotFoundError:
raise ModuleNotFoundError("Please run `pip install optuna-integration lightgbm` first.")

is_integration_available = True
except ImportError:
is_integration_available = False


SEED = 42
Expand Down

0 comments on commit b3932fb

Please sign in to comment.