Skip to content

Commit

Permalink
Small fix to parse_theses
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardonpa committed Jul 2, 2024
1 parent 0588439 commit 2c8ef41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yaml2md.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ def parse_theses(header, file):
entries = yaml.safe_load(f)

for type in ['PhD Thesis','MS Thesis','BS Thesis']:
formatted_entries += f"## {type.upper()}\n\n"
parsed_entries += f"## {type.upper()}\n\n"
No = len([entry for entry in entries if entry['type'] == type])
for entry in entries:
if entry['type'] == type:
Expand Down

0 comments on commit 2c8ef41

Please sign in to comment.