From 67ce0e951a658f4c68dea3e61541ab6cf56c093e Mon Sep 17 00:00:00 2001 From: Nathan Perkins Date: Thu, 14 Dec 2023 16:23:11 +0000 Subject: [PATCH] Update client.py for property_value renaming --- darwin/client.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/darwin/client.py b/darwin/client.py index 2886455a8..1c9ce360d 100644 --- a/darwin/client.py +++ b/darwin/client.py @@ -1484,12 +1484,12 @@ def api_v2(self) -> BackendV2: return BackendV2(self, team.slug) def get_team_properties( - self, team_slug: Optional[str] = None, include_options: bool = True + self, team_slug: Optional[str] = None, include_property_values: bool = True ) -> List[FullProperty]: darwin_config = DarwinConfig.from_old(self.config) future_client = ClientCore(darwin_config) - if not include_options: + if not include_property_values: return get_team_properties_future( client=future_client, team_slug=team_slug or self.default_team,