Skip to content

Commit 5db367f

Browse files
authored
Merge pull request #7 from OpenCatalogi/fix/issue-6/fix-missing-brace
Fix a missing brace
2 parents 5fe2de0 + e8f0f6d commit 5db367f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ runs:
119119
120120
if (data == {}):
121121
try:
122-
with open("publiccode.yml", "r" as f:
122+
with open("publiccode.yml", "r") as f:
123123
data = yaml.safe_load(f)
124124
filename = "publiccode.yml"
125125
except FileNotFoundError:

0 commit comments

Comments
 (0)