Skip to content

Commit

Permalink
Fix for linter
Browse files Browse the repository at this point in the history
  • Loading branch information
stuwilkins committed Feb 9, 2025
1 parent 4ec2241 commit 09f277f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/modules/github_vars_facts.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,9 +213,9 @@ def run_module():
if len(module.params["filters"]) > 0:
filtered_data = {}
for f in module.params["filters"]:
for key in data.keys():
for key, value in data.items():
if re.match(f, key):
filtered_data[key] = data[key]
filtered_data[key] = value

filtered_keys = [k for k in data if k not in filtered_data]

Expand Down

0 comments on commit 09f277f

Please sign in to comment.