Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
dometto committed May 15, 2024
1 parent 27382aa commit b3f19e3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions plugins/modules/ibridges_sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,12 +156,12 @@ def run_module():
else:
result['changed'] = False if len(sync_result['changed_files']) + len(sync_result['changed_folders']) == 0 else True

result['changed_files'] = [ {'path': file.path} for file in sync_result['changed_files'] ]
result['changed_files'] = [{'path': file.path} for file in sync_result['changed_files']]
result['changed_folders'] = [
{
'path': folder.path,
'n_files': folder.n_files,
'n_folders': folder.n_folders
'path': folder.path,
'n_files': folder.n_files,
'n_folders': folder.n_folders
} for folder in sync_result['changed_folders']
]

Expand Down

0 comments on commit b3f19e3

Please sign in to comment.