Skip to content

Commit

Permalink
pre-commit fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
MosheEichler committed Nov 25, 2024
1 parent 30d2771 commit bc6fdac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Packs/rasterize/Integrations/rasterize/rasterize.py
Original file line number Diff line number Diff line change
Expand Up @@ -1194,7 +1194,7 @@ def get_width_height(args: dict):
def main(): # pragma: no cover
incident_id = incident_name = ''
if (incident := demisto.incident()) and (incident_id := incident.get('id', '')):
incident_name = incident.get('name')
incident_name = incident.get('name', '')
demisto.debug(f"main, {demisto.command()=}, {incident_id=}, {incident_name=}")
demisto.debug(f'Using performance params: {MAX_CHROMES_COUNT=}, {MAX_CHROME_TABS_COUNT=}, {MAX_RASTERIZATIONS_COUNT=}')
threading.excepthook = excepthook_recv_loop
Expand Down

0 comments on commit bc6fdac

Please sign in to comment.