Skip to content

Commit 5bc6653

Browse files
committed
Update pdf.py
1 parent 960ccd9 commit 5bc6653

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/pdf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def capture_app_type(self) -> None:
6969
for item in app:
7070
if str(item).startswith('App ID'):
7171
app_type = str(item).split('| ')
72-
self.app_type.append(app_type[-1][:-1])
72+
self.app_type.append(app_type[-1])
7373

7474
def fit_student_data(self, app_data: list) -> list:
7575
"""Method for fitting the nested lists data of list and strings into a coherent list of strings.

0 commit comments

Comments
 (0)