Skip to content

Commit d28fc9a

Browse files
committed
fixing typos
1 parent 5462c8e commit d28fc9a

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

opentok/exceptions.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,22 +47,22 @@ class ForceDisconnectError(OpenTokException):
4747
class SipDialError(OpenTokException):
4848
"""
4949
Indicates that there was a SIP dial specific problem:
50-
The Session ID ed in is invalid or you attempt to start a SIP call for a session
50+
The Session ID passed in is invalid or you attempt to start a SIP call for a session
5151
that does not use the OpenTok Media Router.
5252
"""
5353

5454

5555
class SetStreamClassError(OpenTokException):
5656
"""
5757
Indicates that there is invalid data in the JSON request.
58-
It may also indicate that invalid layout options have been ed
58+
It may also indicate that invalid layout options have been passed.
5959
"""
6060

6161

6262
class BroadcastError(OpenTokException):
6363
"""
6464
Indicates that data in your request data is invalid JSON. It may also indicate
65-
that you ed in invalid layout options. Or you have exceeded the limit of five
65+
that you passed in invalid layout options. Or you have exceeded the limit of five
6666
simultaneous RTMP streams for an OpenTok session. Or you specified and invalid resolution.
6767
Or The broadcast has already started for the session
6868
"""

opentok/opentok.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
from datetime import datetime
2-
from functools import partial # generate_token
1+
from datetime import datetime # generate_token
32
from typing import List, Optional # imports List, Optional type hint
43
import calendar # generate_token
54
import base64 # generate_token

0 commit comments

Comments
 (0)