From 249da6ec4351da71215d93db9c7f80b09bb59a02 Mon Sep 17 00:00:00 2001 From: Niloth P <20315308+Niloth-p@users.noreply.github.com> Date: Tue, 31 Dec 2024 23:27:50 +0530 Subject: [PATCH] webhooks: Remove arguments passing default `image_name` values. --- zerver/lib/integrations.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zerver/lib/integrations.py b/zerver/lib/integrations.py index c2af406cd3..f8dbf90fcc 100644 --- a/zerver/lib/integrations.py +++ b/zerver/lib/integrations.py @@ -749,13 +749,13 @@ DOC_SCREENSHOT_CONFIG: dict[str, list[BaseScreenshotConfig]] = { "mention": [ScreenshotConfig("webfeeds.json")], "nagios": [BaseScreenshotConfig("service_notify.json")], "netlify": [ScreenshotConfig("deploy_building.json")], - "newrelic": [ScreenshotConfig("incident_activated_new_default_payload.json", "001.png")], + "newrelic": [ScreenshotConfig("incident_activated_new_default_payload.json")], "opencollective": [ScreenshotConfig("one_time_donation.json")], "opsgenie": [ScreenshotConfig("addrecipient.json")], "pagerduty": [ScreenshotConfig("trigger_v2.json")], "papertrail": [ScreenshotConfig("short_post.json", payload_as_query_param=True)], "patreon": [ScreenshotConfig("members_pledge_create.json")], - "pingdom": [ScreenshotConfig("http_up_to_down.json", image_name="001.png")], + "pingdom": [ScreenshotConfig("http_up_to_down.json")], "pivotal": [ScreenshotConfig("v5_type_changed.json")], "radarr": [ScreenshotConfig("radarr_movie_grabbed.json")], "raygun": [ScreenshotConfig("new_error.json")],