1
0
mirror of https://github.com/konpa/devicon.git synced 2025-08-23 06:33:11 +02:00

Python now print traceback

This commit is contained in:
Thomas Bui
2021-01-08 15:36:05 -08:00
parent b7ae338d2f
commit b1922925b7
7 changed files with 61 additions and 47 deletions

View File

@@ -214,6 +214,7 @@ def get_added_modified_svgs(files_changed_json_path: str):
:return: a list of the svg file paths that were added/modified in this pr.
"""
files_dict = get_json_file_content(files_changed_json_path)
print(files_dict)
svgs = []
for file in files_dict["added"]:
path = Path(file)