Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion python-wrapper/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ requires-python = ">=3.9"

[project.optional-dependencies]
dev = [
"ruff==0.8.6",
"ruff==0.9.0",
"mypy==1.14.1",
"pytest==8.3.4",
"selenium==4.27.1",
Expand Down
2 changes: 1 addition & 1 deletion python-wrapper/tests/test_colors.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def test_color_nodes_iter_exhausted() -> None:
with pytest.warns(
UserWarning,
match=(
"Ran out of colors for property 'caption'. 3 colors were needed, but only 2 were given, " "so reused colors"
"Ran out of colors for property 'caption'. 3 colors were needed, but only 2 were given, so reused colors"
),
):
VG.color_nodes("caption", ["#000000", "#00FF00"])
Expand Down
Loading