mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-14 02:50:12 +01:00
lint: remove sets usage
This commit is contained in:
parent
ec301b8566
commit
2493e705f2
@ -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",
|
||||
|
Loading…
Reference in New Issue
Block a user