Skip to content

Commit

Permalink
Updated structure and syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick-prog committed Jul 18, 2024
1 parent 35877d3 commit 91d8e3f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions core/structure.py
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@ def translate_N1(self) -> str:
_translate = {
'TM': 'ApplyTexas Appication',
'AT': 'Date',
'HS': 'High School Info:',
'HS': 'High School Info',
'BU': 'Organization'
}

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

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

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

if self.target[3] == 'RES: COMMENTS':
if self.target[-1] == 'RES: COMMENTS':
Expand Down
4 changes: 2 additions & 2 deletions core/syntax.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def HS_GED_TYPE(self) -> list:
final = str(self.target[-1]).replace('\\', '')


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

Expand Down Expand Up @@ -273,7 +273,7 @@ def RES_RESIDENCY_CLAIM(self) -> list:
return


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

def RES_SELF(self) -> list:
Expand Down

0 comments on commit 91d8e3f

Please sign in to comment.