8000 fix: shortcut syntax for new non-GA versions by eshanholtz · Pull Request #558 · twilio/twilio-python · GitHub
[go: up one dir, main page]

Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions twilio/rest/studio/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ def v2(self):
@property
def flows(self):
"""
:rtype: twilio.rest.studio.v2.flow.FlowList
:rtype: twilio.rest.studio.v1.flow.FlowList
"""
return self.v2.flows
return self.v1.flows

@property
def flow_validate(self):
Expand Down
0