We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 692e29a commit 6dc1e43Copy full SHA for 6dc1e43
1 file changed
Scripts/find_dependencies.py
@@ -72,7 +72,7 @@ def load_workflows_from_json():
72
# Get the workflow name from the JSON file name
73
workflow = os.path.basename(file_json).split(".")[0]
74
try:
75
- with open(file_json, "r") as j:
+ with open(file_json, "r", encoding="utf8", errors="ignore") as j:
76
specs_wf = json.load(j)
77
db_wf[workflow] = specs_wf["workflow"]
78
except FileNotFoundError:
0 commit comments