From 7c83608431ebe4f1c7fe471520f9acf5e6608884 Mon Sep 17 00:00:00 2001 From: Jacob Chapman <7908073+chapmanjacobd@users.noreply.github.com> Date: Wed, 28 Feb 2024 01:29:43 -0600 Subject: [PATCH] small kwarg fix --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index aad4494..9c65f93 100644 --- a/README.md +++ b/README.md @@ -20,8 +20,8 @@ Or you can use directly a Pillow Image instance: from dominantcolors import get_dominant_colors_for from PIL import Image -image = Image.open("/path/to/image.jpg", num_colors=3) -dominant_colors = get_dominant_colors_for(image) +image = Image.open("/path/to/image.jpg") +dominant_colors = get_dominant_colors_for(image, num_colors=3) ``` ## Performance