mirror of
https://github.com/onyx-and-iris/obsws-python.git
synced 2024-11-22 21:00:53 +00:00
fixed method name typos
This commit is contained in:
parent
66a85131a3
commit
1793685be0
@ -246,7 +246,7 @@ class ReqClient(object):
|
|||||||
response = self.base_client.req('GetProfileList')
|
response = self.base_client.req('GetProfileList')
|
||||||
return response
|
return response
|
||||||
|
|
||||||
def SetCurrentProfie(self, name):
|
def SetCurrentProfile(self, name):
|
||||||
"""
|
"""
|
||||||
Switches to a profile
|
Switches to a profile
|
||||||
|
|
||||||
@ -259,7 +259,7 @@ class ReqClient(object):
|
|||||||
response = self.base_client.req('SetCurrentProfile', payload)
|
response = self.base_client.req('SetCurrentProfile', payload)
|
||||||
return response
|
return response
|
||||||
|
|
||||||
def CreateProfle(self, name):
|
def CreateProfile(self, name):
|
||||||
"""
|
"""
|
||||||
Creates a new profile, switching to it in the process
|
Creates a new profile, switching to it in the process
|
||||||
|
|
||||||
@ -272,7 +272,7 @@ class ReqClient(object):
|
|||||||
response = self.base_client.req('CreateProfile', payload)
|
response = self.base_client.req('CreateProfile', payload)
|
||||||
return response
|
return response
|
||||||
|
|
||||||
def RemoveProfle(self, name):
|
def RemoveProfile(self, name):
|
||||||
"""
|
"""
|
||||||
Removes a profile. If the current profile is chosen,
|
Removes a profile. If the current profile is chosen,
|
||||||
it will change to a different profile first.
|
it will change to a different profile first.
|
||||||
|
Loading…
Reference in New Issue
Block a user