From 416e45b74fba7a297bffbeeef91349faeced9c27 Mon Sep 17 00:00:00 2001 From: Akash Mahanty Date: Mon, 31 Jan 2022 23:51:54 +0530 Subject: [PATCH] remove unused typing import --- imagedominantcolor/dominantcolor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imagedominantcolor/dominantcolor.py b/imagedominantcolor/dominantcolor.py index f073f72..57c0450 100644 --- a/imagedominantcolor/dominantcolor.py +++ b/imagedominantcolor/dominantcolor.py @@ -1,6 +1,6 @@ from PIL import Image from collections import Counter -from typing import Tuple, Union, List +from typing import Tuple, List class DominantColor: