From fb2050b38b5c6469c19c88b3df536a880c015fc9 Mon Sep 17 00:00:00 2001 From: augustuswm Date: Mon, 8 Apr 2024 07:56:54 -0500 Subject: [PATCH] Stop parsing presentation samples --- cio/src/applicants.rs | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/cio/src/applicants.rs b/cio/src/applicants.rs index 78611dac5..eaf1f48dd 100644 --- a/cio/src/applicants.rs +++ b/cio/src/applicants.rs @@ -1776,19 +1776,19 @@ The applicants Airtable \ } self.analysis_samples = analysis_samples; - let mut presentation_samples = - parse_question(r"Presentation sample\(s\)", "Questionnaire", &materials_contents); - if presentation_samples.is_empty() { - presentation_samples = parse_question( - r"I(?s:.*)you don’t have a publicl(?s:.*)available presentation(?s:.*)pleas(?s:.*)describe a topic on which you have presented in th(?s:.*)past\.", - "Questionnaire", - &materials_contents, - ); - if presentation_samples.is_empty() { - presentation_samples = parse_question(r"Presentation samples", "Questionnaire", &materials_contents); - } - } - self.presentation_samples = presentation_samples; + // let mut presentation_samples = + // parse_question(r"Presentation sample\(s\)", "Questionnaire", &materials_contents); + // if presentation_samples.is_empty() { + // presentation_samples = parse_question( + // r"I(?s:.*)you don’t have a publicl(?s:.*)available presentation(?s:.*)pleas(?s:.*)describe a topic on which you have presented in th(?s:.*)past\.", + // "Questionnaire", + // &materials_contents, + // ); + // if presentation_samples.is_empty() { + // presentation_samples = parse_question(r"Presentation samples", "Questionnaire", &materials_contents); + // } + // } + self.presentation_samples = String::new(); let mut exploratory_samples = parse_question(r"Exploratory sample\(s\)", "Questionnaire", &materials_contents); if exploratory_samples.is_empty() {