Skip to content

Commit

Permalink
Fix typing issues
Browse files Browse the repository at this point in the history
  • Loading branch information
facelessuser committed Mar 11, 2024
1 parent 39c410c commit 600bac1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion coloraide/gamut/fit_raytrace.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,4 +213,4 @@ def fit(self, color: Color, space: str, *, lch: str | None = None, **kwargs: Any

# If we have coerced a space to RGB, update the original
if coerced:
coerced.update(color, color[-1])
coerced.update(color)
2 changes: 1 addition & 1 deletion coloraide/spaces/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ def to_string(
*,
alpha: bool | None = None,
precision: int | None = None,
fit: bool | str = True,
fit: str | bool | dict[str, Any] = True,
none: bool = False,
percent: bool | Sequence[bool] = False,
**kwargs: Any
Expand Down

0 comments on commit 600bac1

Please sign in to comment.