Skip to content
Snippets Groups Projects
Commit ef33786a authored by Daniel Hornung's avatar Daniel Hornung
Browse files

MAINT Linting

parent c4e8b63d
No related branches found
No related tags found
2 merge requests!100WIP: Filling XLSX: Seems to be working.,!93Filling XLSX: Everything except multiple choice.
Pipeline #49063 failed
......@@ -229,13 +229,13 @@ class Crawler(object):
else:
update_incomplete = True
new_cont = tmp
if new_cont[0].version:
if new_cont[0].version: # pylint: disable=no-member
valids = db.Container()
nonvalids = db.Container()
for ent in new_cont:
remote_ent = db.Entity(id=ent.id).retrieve()
if ent.version == remote_ent.version:
if ent.version == remote_ent.version: # pylint: disable=no-member
valids.append(ent)
else:
update_incomplete = True
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment