Skip to content

Commit

Permalink
update colortool
Browse files Browse the repository at this point in the history
  • Loading branch information
tandav committed Apr 30, 2024
1 parent a9a8480 commit f25de4d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ description = "set of tools to work with scales, modes, modulations, chord progr
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"colortool>=0.5.3",
"colortool>=0.6.0",
"opseq>=0.1.2",
"mido>=1.3.0",
"svg.py",
Expand Down
2 changes: 1 addition & 1 deletion src/musiclib/svg/isomorphic/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ def add_key(self, row: float, col: float) -> None:
polygon = svg.Polygon(
class_=['polygon-transparent'],
points=points, # type: ignore[arg-type]
fill=Color.from_rgba_int((0, 0, 0, 0)).css_rgba,
fill=Color.from_rgba_int((0, 0, 0, 0)).css_rgb,
)
polygon.interval = interval # type: ignore[attr-defined]
polygon.abstract_interval = abstract_interval.interval # type: ignore[attr-defined]
Expand Down

0 comments on commit f25de4d

Please sign in to comment.