We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ac5ecc commit cfd1911Copy full SHA for cfd1911
1 file changed
pat2vec/patvec_get_batch_methods/get_merged_batches.py
@@ -571,6 +571,11 @@ def get_merged_pat_batch_mct_docs(
571
# Apply data type filters for MCT documents
572
batch_target = apply_data_type_mct_docs_filters(config_obj, batch_target)
573
574
+ # larger batches returned as lists...
575
+ if isinstance(batch_target, list) and len(batch_target) == 1:
576
+
577
+ batch_target = batch_target[0]
578
579
# Drop rows with NaN values in critical columns
580
col_list_drop_nan = [
581
"observation_valuetext_analysed",
0 commit comments