Skip to content

Commit

Permalink
Updated package to fix codeql
Browse files Browse the repository at this point in the history
  • Loading branch information
v-sabiraj committed Jul 25, 2023
1 parent f09e261 commit b6122a1
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ async def main(mytimer: func.TimerRequest):
last_processed_date = await process_assets(assets=assets, api=api, sentinel=sentinel,
state_manager=state_manager)
state_manager.remember_last_date(last_processed_date)
if(last_processed_date == None):
if(last_processed_date is None):
logging.info('Last Processed date is None so setting EndDate {}'.format(end_time))
state_manager.remember_last_date(end_time)
await state_manager.save_last_date_to_storage()
Expand Down

0 comments on commit b6122a1

Please sign in to comment.