From 82eb59af888226861733f01b5b7910778749f27c Mon Sep 17 00:00:00 2001 From: Shubham Tiwari Date: Thu, 29 Feb 2024 13:07:56 +0530 Subject: [PATCH] chore: removing preview.understand references --- twilio/rest/preview/__init__.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/twilio/rest/preview/__init__.py b/twilio/rest/preview/__init__.py index 6933f3627c..79d870e134 100644 --- a/twilio/rest/preview/__init__.py +++ b/twilio/rest/preview/__init__.py @@ -9,7 +9,6 @@ from twilio.rest.preview.marketplace.available_add_on import AvailableAddOnList from twilio.rest.preview.marketplace.installed_add_on import InstalledAddOnList from twilio.rest.preview.sync.service import ServiceList -from twilio.rest.preview.understand.assistant import AssistantList from twilio.rest.preview.wireless.command import CommandList from twilio.rest.preview.wireless.rate_plan import RatePlanList from twilio.rest.preview.wireless.sim import SimList @@ -70,15 +69,6 @@ def services(self) -> ServiceList: ) return self.sync.services - @property - def assistants(self) -> AssistantList: - warn( - "assistants is deprecated. Use understand.assistants instead.", - DeprecationWarning, - stacklevel=2, - ) - return self.understand.assistants - @property def commands(self) -> CommandList: warn(