Skip to content

Commit c7160da

Browse files
authored
Merge branch 'master' into top-level-entity-naming
2 parents 8123551 + feff9da commit c7160da

File tree

3 files changed

+7
-0
lines changed

3 files changed

+7
-0
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,13 @@ docs/_build/
4343

4444
# Virtual env
4545
venv/
46+
env/
4647

4748
# Mac Desktop files
4849
.DS_Store
4950

5051
# IDE
5152
.vscode
53+
54+
#Pypi
55+
.pypirc

opentok/opentok.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,9 @@ class ArchiveModes(Enum):
8282
logger = logging.getLogger("opentok")
8383

8484

85+
8586
class Client(object):
87+
8688
"""Use this SDK to create tokens and interface with the server-side portion
8789
of the Opentok API.
8890
"""

tests/test_getter_setter.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ def setUp(self):
1414
self.session_id = u(
1515
"1_MX4xMjM0NTZ-flNhdCBNYXIgMTUgMTQ6NDI6MjMgUERUIDIwMTR-MC40OTAxMzAyNX4"
1616
)
17+
1718
self.opentok = Client(self.api_key, self.api_secret)
1819

1920
def test_getset_jwt_livetime(self):

0 commit comments

Comments
 (0)