chiark / gitweb /
lint: remove sets usage
authorDaniel Martí <mvdan@mvdan.cc>
Mon, 4 Jan 2016 16:40:21 +0000 (17:40 +0100)
committerDaniel Martí <mvdan@mvdan.cc>
Thu, 10 Mar 2016 16:43:37 +0000 (16:43 +0000)
fdroidserver/lint.py

index e2e889417837a1e344af19165a29a210421081a2..5c25c33c12b8f97050a528dd27ed076b900f948e 100644 (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",