Skip to content

Commit

Permalink
Merge pull request #11 from wandb/fix/smoothing-literal
Browse files Browse the repository at this point in the history
fix(workspaces-api): update literal options of smoothing type
  • Loading branch information
thanos-wandb authored Jun 13, 2024
2 parents 6000559 + 95d7da7 commit 1f3c28f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wandb_workspaces/reports/v2/internal.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def base_repr(number: int, base: int, padding: int = 0) -> str:
GroupArea = Literal["minmax", "stddev", "stderr", "none", "samples"]
Mark = Literal["solid", "dashed", "dotted", "dotdash", "dotdotdash"]
Timestep = Literal["seconds", "minutes", "hours", "days"]
SmoothingType = Literal["exponential", "gaussian", "average", "none"]
SmoothingType = Literal["exponentialTimeWeighted", "exponential", "gaussian", "average", "none"]
CodeCompareDiff = Literal["split", "unified"]
Range = Tuple[Optional[float], Optional[float]]
Language = Literal["javascript", "python", "css", "json", "html", "markdown", "yaml"]
Expand Down

0 comments on commit 1f3c28f

Please sign in to comment.