Skip to content

Commit 67cb591

Browse files
committed
Fix app properties errors
1 parent e56f304 commit 67cb591

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

braspag_sdk/braspag.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,21 +28,21 @@ def payments(self) -> BraspagPaymentsServices:
2828
def split(self) -> BraspagSplitServices:
2929
if not self._split:
3030
raise Exception("Split app is not initialized, "
31-
"please define SplitCredentials and call init() method first")
31+
"please add it to Braspag instance using add_split() method")
3232
return self._split
3333

3434
@property
3535
def emv3ds(self) -> BraspagEMV3DSServices:
3636
if not self._emv3ds:
3737
raise Exception("EMV3DS app is not initialized, "
38-
"please define EMV3DSCredentials and call init() method first")
38+
"please add it to Braspag instance using add_emv3ds() method")
3939
return self._emv3ds
4040

4141
@property
4242
def sop(self) -> BraspagSOPServices:
4343
if not self._sop:
4444
raise Exception("SOP app is not initialized, "
45-
"please define SilentOrderPostCredentials and call init() method first")
45+
"please add it to Braspag instance using add_sop() method")
4646
return self._sop
4747

4848
def add_split(self, split_credentials: SplitCredentials):

0 commit comments

Comments
 (0)