Skip to content
This repository has been archived by the owner on Nov 8, 2024. It is now read-only.

Commit

Permalink
Stop parsing presentation samples
Browse files Browse the repository at this point in the history
  • Loading branch information
augustuswm committed Apr 8, 2024
1 parent f9a31be commit fb2050b
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions cio/src/applicants.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down

0 comments on commit fb2050b

Please sign in to comment.