Skip to content

Commit 0e360b6

Browse files
committed
Remove noqa
1 parent 6d2b45a commit 0e360b6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • examples/chem-sync-local-flask/local_app/benchling_app

examples/chem-sync-local-flask/local_app/benchling_app/handler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def handle_webhook(webhook_dict: dict[str, Any]) -> None:
3333
route_interaction_webhook(app, webhook.message)
3434
else:
3535
# Should only happen if the app's manifest requests webhooks that aren't handled in its code paths
36-
raise UnsupportedWebhookError(f"Received an unsupported webhook type: {webhook}") # noqa: TRY301
36+
raise UnsupportedWebhookError(f"Received an unsupported webhook type: {webhook}")
3737
logger.debug("Successfully completed request for webhook: %s", webhook_dict)
3838
# We want errors shown to the user to end control flow, but we don't want them to propagate
3939
# and show as errors in our logs.

0 commit comments

Comments
 (0)