Skip to content

Commit 5ad05cd

Browse files
Update src/anyvlm/functions/build_vlm_response.py
Co-authored-by: Kori Kuzma <korikuzma@gmail.com>
1 parent d0d35bd commit 5ad05cd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/anyvlm/functions/build_vlm_response.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ def build_vlm_response(
133133
_logger.warning("Received more than 1 CAF data instance: %s", caf_data)
134134
msg = "Only single allele/data source responses are currently supported"
135135
raise NotImplementedError(msg)
136-
if len(caf_data) == 0:
136+
if not caf_data:
137137
result_sets = build_nonexistent_vlm_resultsets(handover_type.id)
138138
else:
139139
result_sets = build_vlm_resultsets(caf_data[0], handover_type.id)

0 commit comments

Comments
 (0)