Skip to content

Commit

Permalink
Update client.py for property_value renaming
Browse files Browse the repository at this point in the history
  • Loading branch information
Nathanjp91 authored Dec 14, 2023
1 parent a9581f2 commit 67ce0e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions darwin/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 67ce0e9

Please sign in to comment.