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