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 b6aee64 commit 1f31713Copy full SHA for 1f31713
autoemulate/core/compare.py
@@ -2,6 +2,7 @@
2
import warnings
3
from datetime import datetime
4
from pathlib import Path
5
+from typing import Literal
6
7
import joblib
8
import matplotlib.pyplot as plt
@@ -597,7 +598,7 @@ def plot( # noqa: PLR0912, PLR0915
597
598
output_index: list[int] | int | None = None,
599
input_ranges: dict | None = None,
600
output_ranges: dict | None = None,
- error_style: str = "bars",
601
+ error_style: Literal["bars", "fill"] = "bars",
602
figsize=None,
603
ncols: int = 3,
604
fname: str | None = None,
0 commit comments