Skip to content

Commit 8a370b7

Browse files
committed
parsed
Signed-off-by: Anas Nashif <[email protected]>
1 parent 8ac8d6b commit 8a370b7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/set_assignees.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,8 +152,8 @@ def process_pr(gh, maintainer_file, number):
152152
if changed_file.filename in ['west.yml','submanifests/optional.yaml']:
153153
if args.areas and Path(args.areas).is_file():
154154
with open(args.areas, "r") as f:
155-
areas = json.load(f)
156-
for _area in areas:
155+
parsed_areas = json.load(f)
156+
for _area in parsed_areas:
157157
area_match = maintainer_file.name2areas(_area)
158158
if area_match:
159159
areas.extend(area_match)

0 commit comments

Comments
 (0)