Add type hints and docstring to test _solid helper (CodeRabbit nitpick)

This commit is contained in:
Claude
2026-07-08 12:35:35 +00:00
parent 43faf10fea
commit 8d96ea5dd4
+2 -1
View File
@@ -31,7 +31,8 @@ def adapter():
return PluginAdapter(FakeDisplayManager())
def _solid(width, height, color):
def _solid(width: int, height: int, color: tuple) -> Image.Image:
"""Create a solid-color RGB image of the given dimensions."""
return Image.new('RGB', (width, height), color)