1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-17 10:40:12 +02:00

lint: remove sets usage

This commit is contained in:
Daniel Martí 2016-01-04 17:40:21 +01:00
parent ec301b8566
commit 2493e705f2

View File

@ -19,7 +19,6 @@
from argparse import ArgumentParser
import re
import sys
from sets import Set
from . import common
from . import metadata
@ -204,7 +203,7 @@ def check_empty_fields(app):
if not app.Categories:
yield "Categories are not set"
all_categories = Set([
all_categories = set([
"Connectivity",
"Development",
"Games",