Skip to content

Commit

Permalink
fixing ansible lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
noredistribution authored and sugetha24 committed Nov 9, 2023
1 parent 273087a commit 008150a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ansible_collections/arista/cvp/plugins/modules/cv_facts_v3.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,10 +185,10 @@ def main():
# Instantiate ansible results
facts_collector = CvFactsTools(cv_connection=cv_client)
try:
facts = facts_collector.facts(scope=ansible_module.params['facts'], regex_filter=ansible_module.params['regexp_filter'],
facts = facts_collector.facts(scope=ansible_module.params['facts'], regex_filter=ansible_module.params['regexp_filter'],
verbose=ansible_module.params['verbose'])
except CvpClientError as e:
ansible_module.fail_json(msg=str(e))
ansible_module.fail_json(msg=str(e))
result = dict(changed=False, data=facts, failed=False)

# Implement logic
Expand Down

0 comments on commit 008150a

Please sign in to comment.