@@ -46,7 +46,7 @@ def long_med_req_value(self, _str: str) -> str:
4646 'GRADUATE AWARD' : None ,
4747 'TEST1 SENT' : None ,
4848 'TEST2 SENT' : None ,
49- 'CUR COLLEGE CRS' : f"Present semester course to be completed : { output } " ,
49+ 'CUR COLLEGE CRS' : f"Current college course: { output } " ,
5050 'CUR COLLEGE ATT' : f"Current college attending code: { output } " ,
5151 'COLLEGE WORK IN CLASSROOM' : None ,
5252 'FAMILY OBLIGATIONS' : None ,
@@ -127,14 +127,14 @@ def req_and_or_answer_value(self, _str: str) -> str:
127127 'RES: COMMENTS\\ ' : None ,
128128 'FAMILY OBLIGATION INCOME\\ ' : None ,
129129 'FAMILY OBLIGATION CARE\\ ' : None ,
130- 'FAMILY OBLIGATION OTHER\\ ' : None , # f'{_str[-1]}',
131- 'TREX TRANSCRIPT REQUESTED\\ ' : None , # f'Transcript sharing consent: {_str[-1]}',
130+ 'FAMILY OBLIGATION OTHER\\ ' : None ,
131+ 'TREX TRANSCRIPT REQUESTED\\ ' : None ,
132132 'FUNDS SUPPORT\\ ' : "Do you have a source of financial suppport if your are, or will be, in F-1 or J-1 status?" ,
133133 'CONTACT AT WORK\\ ' : None ,
134134 'RES: BASIS OF CLAIM\\ ' : None ,
135135 'REVERSE TRANSFER\\ ' : None ,
136136 'APPLICATION SHARING\\ ' : None ,
137- 'FAMILY OBLIGATIONS\\ ' : None , # f'Do you have family obligations that keep you from participating in extracurricular activities? {_str[-1]}',
137+ 'FAMILY OBLIGATIONS\\ ' : None ,
138138 'OTHER FIRST NAME1\\ ' : None ,
139139 'OTHER FIRST NAME2\\ ' : None ,
140140 'OTHER MIDDLE NAME1\\ ' : None ,
@@ -217,7 +217,7 @@ def ethnicity_race_value(self, _str: str) -> str:
217217 }
218218
219219 not_hispanic_ = {
220- "Ethnicity=W\\ " : "Not Hispanic or Latino. N/A." ,
220+ "Ethnicity=W\\ " : "Not Hispanic or Latino. Ethnicity= N/A." ,
221221 "Ethnicity=W;Race=S\\ " : "Not Hispanic or Latino. White." ,
222222 "Ethnicity=W;Race=T\\ " : "Not Hispanic or Latino. American Indian or Alaska Native." ,
223223 "Ethnicity=W;Race=Q\\ " : "Not Hispanic or Latino. Black or African American." ,
@@ -232,8 +232,8 @@ def ethnicity_race_value(self, _str: str) -> str:
232232 }
233233
234234 other_ = {
235- "Ethnicity=\\ " : "N/A. N/A." ,
236- "Ethnicity=R\\ " : "Hispanic or Latino. N/A." ,
235+ "Ethnicity=\\ " : "Gender= N/A. Ethnicity= N/A." ,
236+ "Ethnicity=R\\ " : "Hispanic or Latino. Ethnicity= N/A." ,
237237 }
238238
239239 dictionaries = [hispanic_ , not_hispanic_ , other_ ]
@@ -266,4 +266,16 @@ def gender_value(self, _str: str) -> str:
266266
267267 for key , value in gender_ .items ():
268268 if key == target :
269- return value
269+ return value
270+
271+ def extra_value (self , _str : str ) -> str :
272+
273+ target = str (_str [- 1 ]).replace ('\\ ' , '' )
274+
275+ extra_ = {
276+ '01' : 'Spouse Contact Information:' ,
277+ '02' : 'Child Information:' ,
278+ '51' : 'Emergency Contact Information:'
279+ }
280+
281+ return extra_ [target ]
0 commit comments