update readme

This commit is contained in:
Corey Stone 2021-06-09 17:31:23 -05:00
parent 6305ebe9b0
commit bd9d5bb90f
2 changed files with 2 additions and 2 deletions

File diff suppressed because one or more lines are too long

View File

@ -1,7 +1,7 @@
from pathlib import Path from pathlib import Path
def generate_img_tag(file): def generate_img_tag(file):
return f'<img src="{file.name}" alt="{file.stem}" width="50">' return f'<img src="png/{file.name}" alt="{file.stem}" width="50">'
if __name__ == "__main__": if __name__ == "__main__":
imgs = sorted(Path("../png").glob("*.png")) imgs = sorted(Path("../png").glob("*.png"))