Skip to content

Commit

Permalink
pylint error
Browse files Browse the repository at this point in the history
  • Loading branch information
RotemAmit committed Jan 9, 2025
1 parent 46cf939 commit 9f57a41
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,8 @@ def prepare_search_query_data(args: dict) -> dict:
to_time = now + (60 * 60 * 24 * within_the_last)
elif timeframe == 'hours':
to_time = now + (60 * 60 * within_the_last)
elif timeframe == 'minutes':
else: # timeframe == 'minutes':
demisto.debug(f"{timeframe=} should be minutes.")
to_time = now + (60 * within_the_last)
conditions.extend((
{
Expand Down

0 comments on commit 9f57a41

Please sign in to comment.