Skip to content
Snippets Groups Projects
Commit 333773f2 authored by Piotr Gawron's avatar Piotr Gawron
Browse files

continue statement is unnecessary

parent 850ced5e
No related branches found
No related tags found
1 merge request!350Additional pylint checks
......@@ -55,7 +55,6 @@ disable=
E1003, # bad-super-call
R0911, # too-many-return-statements
W0120, # useless-else-on-loop
R1724, # no-else-continue
[FORMAT]
# Maximum number of characters on a single line.
......
......@@ -38,7 +38,6 @@ class Importer(EtlCommon):
if study_subject.study != self.reader.import_data.study or study_subject.study.id is None:
self.problematic_count += 1
logger.warning("Empty study found. Ignoring")
continue
else:
self.import_study_subject(study_subject)
except BaseException as e:
......
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