File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ runs:
107107 except FileNotFoundError:
108108 data = {}
109109
110- if(data == {}):
110+ if (data == {}):
111111 try:
112112 with open("publiccode.yml", "r" as f:
113113 data = yaml.safe_load(f)
@@ -218,23 +218,23 @@ runs:
218218 except FileNotFoundError:
219219 data = {}
220220
221- if(data == {}):
221+ if (data == {}):
222222 try:
223223 with open("openCatalogi.yaml", "r") as f:
224224 data = yaml.safe_load(f)
225225 filename = "openCatalogi.yaml"
226226 except FileNotFoundError:
227227 data = data
228228
229- if(data == {}):
229+ if (data == {}):
230230 try:
231231 with open("opencatalogi.yml", "r") as f:
232232 data = yaml.safe_load(f)
233233 filename = "opencatalogi.yml"
234234 except FileNotFoundError:
235235 data = data
236236
237- if(data == {}):
237+ if (data == {}):
238238 try:
239239 with open("openCatalogi.yml", "r") as f:
240240 data = yaml.safe_load(f)
You can’t perform that action at this time.
0 commit comments