Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
alexa-phantom committed Sep 24, 2024
1 parent a98e4cb commit d053bf7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion phantom_connector.py
Original file line number Diff line number Diff line change
Expand Up @@ -589,7 +589,7 @@ def _find_artifacts(self, param):
return action_result.set_status(phantom.APP_ERROR, 'Error retrieving records: {0}'.format(action_result.get_message()))

if PAGINATION_COMPLETE in action_result.get_message():
break
break

records += resp_data['data']
if max_results != 0 and count >= max_results:
Expand Down
2 changes: 1 addition & 1 deletion phantom_consts.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,4 @@
PHANTOM_ERR_GET_VAULT_INFO = "Failed to get the vault info: {}"

ARTIFACT_DEFAULT_MAX_RESULTS = 10
PAGINATION_COMPLETE = "That page contains no results"
PAGINATION_COMPLETE = "That page contains no results"

0 comments on commit d053bf7

Please sign in to comment.