Skip to content

Commit

Permalink
Elementree doesnt like bool values
Browse files Browse the repository at this point in the history
  • Loading branch information
ajrice6713 committed Nov 15, 2023
1 parent 00e4016 commit 127561a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bandwidth/models/bxml/verbs/start_transcription.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,5 +60,5 @@ def _attributes(self):
"username": self.username,
"password": self.password,
"destination": self.destination,
"stabilized": self.stabilized,
"stabilized": str(self.stabilized),
}
2 changes: 1 addition & 1 deletion bandwidth/models/bxml/verbs/stop_transcription.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def __init__(
self.name = name

super().__init__(
tag="StartTranscription",
tag="StopTranscription",
)

@property
Expand Down

0 comments on commit 127561a

Please sign in to comment.