diff --git a/setup.py b/setup.py index 6c3695e2..3ee0e3ad 100644 --- a/setup.py +++ b/setup.py @@ -45,3 +45,9 @@ if retries > 3: logger.warning("Maximum retries (3) exceeded") +items = [] +for x in data: + if x not in items: + items.append(x) + +