From 1793685be0fa920b31fb6165c6cd47f1f91adf4c Mon Sep 17 00:00:00 2001 From: aatikturk Date: Sun, 5 Jun 2022 17:41:00 +0300 Subject: [PATCH] fixed method name typos --- obsstudio_sdk/reqs.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/obsstudio_sdk/reqs.py b/obsstudio_sdk/reqs.py index 1b9d4ff..1c2571a 100644 --- a/obsstudio_sdk/reqs.py +++ b/obsstudio_sdk/reqs.py @@ -246,7 +246,7 @@ class ReqClient(object): response = self.base_client.req('GetProfileList') return response - def SetCurrentProfie(self, name): + def SetCurrentProfile(self, name): """ Switches to a profile @@ -259,7 +259,7 @@ class ReqClient(object): response = self.base_client.req('SetCurrentProfile', payload) return response - def CreateProfle(self, name): + def CreateProfile(self, name): """ Creates a new profile, switching to it in the process @@ -272,7 +272,7 @@ class ReqClient(object): response = self.base_client.req('CreateProfile', payload) return response - def RemoveProfle(self, name): + def RemoveProfile(self, name): """ Removes a profile. If the current profile is chosen, it will change to a different profile first.