Skip to content

Commit ea69c83

Browse files
authored
bugfix passing arguments to constructor to avoid rewriting
1 parent 366b3b9 commit ea69c83

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

opentok/opentok.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1149,7 +1149,7 @@ def __init__(
11491149
super(OpenTok, self).__init__(
11501150
api_key,
11511151
api_secret,
1152-
api_url="https://api.opentok.com",
1153-
timeout=None,
1154-
app_version=None,
1152+
api_url=api_url,
1153+
timeout=timeout,
1154+
app_version=app_version,
11551155
)

0 commit comments

Comments
 (0)