Skip to content

Commit 91d8e3f

Browse files
committed
Updated structure and syntax
1 parent 35877d3 commit 91d8e3f

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

core/structure.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,7 @@ def translate_N1(self) -> str:
428428
_translate = {
429429
'TM': 'ApplyTexas Appication',
430430
'AT': 'Date',
431-
'HS': 'High School Info:',
431+
'HS': 'High School Info',
432432
'BU': 'Organization'
433433
}
434434

@@ -437,7 +437,7 @@ def translate_N1(self) -> str:
437437

438438
last = str(self.target[-1]).replace('\\', '')
439439

440-
if sep == 'High School Info:':
440+
if sep == 'High School Info':
441441
return f'{sep}: {self.target[2]} {last}'
442442
elif sep == 'Date':
443443
return f'{sep}: {last}'
@@ -625,9 +625,9 @@ def translate_RQS(self) -> list:
625625
'list those courses also. If you need to list more than 10 courses, please send a list',
626626
'directly to the graduate admissions office at Texas A&M University-Kingsville (TAMKI). Be',
627627
'sure to include your full name, application ID number and date of birth on any documents',
628-
'you send to the admissions office.',
629-
self.target[-1], '']
630-
return [self.target[-1], '']
628+
'you send to the admissions office.', '',
629+
self.target[-1]]
630+
return [self.target[-1]]
631631

632632
if self.target[3] == 'RES: COMMENTS':
633633
if self.target[-1] == 'RES: COMMENTS':

core/syntax.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ def HS_GED_TYPE(self) -> list:
111111
final = str(self.target[-1]).replace('\\', '')
112112

113113

114-
return ['', '3. If you did not graduate from high school, do you have a DEG or have you completed',
114+
return ['3. If you did not graduate from high school, do you have a DEG or have you completed',
115115
'another high school equivalency program?',
116116
f'{target}-{final}', '']
117117

@@ -273,7 +273,7 @@ def RES_RESIDENCY_CLAIM(self) -> list:
273273
return
274274

275275

276-
return ['', 'Of what state or country are you a resident?',
276+
return ['Of what state or country are you a resident?',
277277
f'{self.target[-2]}--{self.target[-1]}', '']
278278

279279
def RES_SELF(self) -> list:

0 commit comments

Comments
 (0)