From 9dc3374ee69627e76dd60b4a9ec24033e92a8413 Mon Sep 17 00:00:00 2001 From: Alexander Metzger Date: Thu, 29 Feb 2024 18:26:14 -0800 Subject: [PATCH] remove unecessary parameter --- recipes/VideoBots.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/recipes/VideoBots.py b/recipes/VideoBots.py index d7bc69469..0ec69af01 100644 --- a/recipes/VideoBots.py +++ b/recipes/VideoBots.py @@ -971,7 +971,6 @@ def render_selected_tab(self, selected_tab): # if we come from an integration redirect, we connect the integrations if "connect_ids" in self.request.query_params: self.integrations_on_connect( - self.request.query_params.getlist("connect_ids"), current_run, published_run, ) @@ -998,7 +997,7 @@ def render_selected_tab(self, selected_tab): integrations, current_run, published_run ) - def integrations_on_connect(self, ids: list[int], current_run, published_run): + def integrations_on_connect(self, current_run, published_run): from app_users.models import AppUser from daras_ai_v2.base import RedirectException from daras_ai_v2.slack_bot import send_confirmation_msg