Fix flake8 warning

This commit is contained in:
Thomas Sileo 2018-06-04 19:13:04 +02:00
parent 0870e22587
commit cc5896f520

View file

@ -30,15 +30,16 @@ ObjectType = Dict[str, Any]
ObjectOrIDType = Union[str, ObjectType] ObjectOrIDType = Union[str, ObjectType]
COLLECTION_CTX = [ COLLECTION_CTX = [
"https://www.w3.org/ns/activitystreams", "https://www.w3.org/ns/activitystreams",
"https://w3id.org/security/v1", "https://w3id.org/security/v1",
{ {
"Hashtag": "as:Hashtag", "Hashtag": "as:Hashtag",
"sensitive": "as:sensitive", "sensitive": "as:sensitive",
} }
] ]
class ActivityType(Enum): class ActivityType(Enum):
"""Supported activity `type`.""" """Supported activity `type`."""
ANNOUNCE = 'Announce' ANNOUNCE = 'Announce'
@ -1205,7 +1206,7 @@ def build_ordered_collection(col, q=None, cursor=None, map_func=None, limit=50,
data = [_remove_id(doc) for doc in data] data = [_remove_id(doc) for doc in data]
if map_func: if map_func:
data = [map_func(doc) for doc in data] data = [map_func(doc) for doc in data]
# No cursor, this is the first page and we return an OrderedCollection # No cursor, this is the first page and we return an OrderedCollection
if not cursor: if not cursor:
resp = { resp = {