Skip to content

Commit

Permalink
Merge pull request #152 from alan-turing-institute/kallewesterling/is…
Browse files Browse the repository at this point in the history
…sue151

Resolve red background on notebook outputs in documentation
  • Loading branch information
kallewesterling authored Feb 12, 2024
2 parents 0139be9 + 30c915a commit 980ef19
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion autoemulate/logging_config.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import logging
import sys
import warnings


Expand All @@ -9,7 +10,7 @@ def configure_logging(log_to_file=False):
logger.handlers = [] # Clear existing handlers

# Create console handler with a higher log level
ch = logging.StreamHandler()
ch = logging.StreamHandler(sys.stdout)
ch.setLevel(logging.INFO)

# Create formatter and add it to the handler
Expand Down
4 changes: 2 additions & 2 deletions docs/getting-started/quickstart.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@
},
{
"cell_type": "code",
"execution_count": 1,
"execution_count": 4,
"metadata": {},
"outputs": [],
"source": [
"import numpy as np\n",
"from autoemulate.compare import AutoEmulate\n",
"from autoemulate.experimental_design import LatinHypercube\n",
"from autoemulate.demos.projectile import simulator"
"from autoemulate.simulations.projectile import simulator"
]
},
{
Expand Down

0 comments on commit 980ef19

Please sign in to comment.