Skip to content

Commit 1397c5a

Browse files
committed
updated the code
1 parent 7f47f4d commit 1397c5a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Packs/SilentPush/Integrations/SilentPush/SilentPush.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -330,9 +330,9 @@ def list_domain_infratags_command(client: Client, args: dict) -> CommandResults:
330330

331331
domains = argToList(args.get('domains', ''))
332332
cluster = argToBoolean(args.get('cluster', False))
333-
mode = args.get('mode', 'live') # Default to 'live'
334-
match = args.get('match', 'self') # Default to 'self'
335-
as_of = args.get('as_of', None) # Default to None
333+
mode = args.get('mode', 'live')
334+
match = args.get('match', 'self')
335+
as_of = args.get('as_of', None)
336336

337337
if not domains:
338338
raise ValueError('"domains" argument is required and cannot be empty.')

0 commit comments

Comments
 (0)