Skip to content

Commit 3aa944d

Browse files
updated references
1 parent 9819dd9 commit 3aa944d

12 files changed

Lines changed: 23 additions & 23 deletions

mercadopago/card.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from mercadopagorestclient import MercadoPagoRestClient
1+
from .mercadopagorestclient import MercadoPagoRestClient
22

33
class Card(MercadoPagoRestClient):
44
def __init__(self, client_id, client_secret, access_token):

mercadopago/cardtoken.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from mercadopagorestclient import MercadoPagoRestClient
1+
from .mercadopagorestclient import MercadoPagoRestClient
22

33
class CardToken(MercadoPagoRestClient):
44
def __init__(self, client_id, client_secret, access_token):

mercadopago/customer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from mercadopagorestclient import MercadoPagoRestClient
1+
from .mercadopagorestclient import MercadoPagoRestClient
22

33
class Customer(MercadoPagoRestClient):
44
def __init__(self, client_id, client_secret, access_token):

mercadopago/discountcampaign.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from mercadopagorestclient import MercadoPagoRestClient
1+
from .mercadopagorestclient import MercadoPagoRestClient
22

33
class DiscountCampaign(MercadoPagoRestClient):
44
def __init__(self, client_id, client_secret, access_token):

mercadopago/genericcall.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from mercadopagorestclient import MercadoPagoRestClient
1+
from .mercadopagorestclient import MercadoPagoRestClient
22

33
class GenericCall(MercadoPagoRestClient):
44
def __init__(self, client_id, client_secret, access_token):

mercadopago/identificationtype.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from mercadopagorestclient import MercadoPagoRestClient
1+
from .mercadopagorestclient import MercadoPagoRestClient
22

33
class IdentificationType(MercadoPagoRestClient):
44
def __init__(self, client_id, client_secret, access_token):

mercadopago/mercadopago.py

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
from mpinvalidcredentials import MPInvalidCredentials
2-
3-
from card import Card
4-
from cardtoken import CardToken
5-
from customer import Customer
6-
from payment import Payment
7-
from preference import Preference
8-
from genericcall import GenericCall
9-
from discountcampaign import DiscountCampaign
10-
from identificationtype import IdentificationType
11-
from merchantorder import MerchantOrder
1+
from .mpinvalidcredentials import MPInvalidCredentials
2+
3+
from .card import Card
4+
from .cardtoken import CardToken
5+
from .customer import Customer
6+
from .payment import Payment
7+
from .preference import Preference
8+
from .genericcall import GenericCall
9+
from .discountcampaign import DiscountCampaign
10+
from .identificationtype import IdentificationType
11+
from .merchantorder import MerchantOrder
1212

1313

1414
class MP(object):

mercadopago/mercadopagorestclient.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
from mpinvalidcredentials import MPInvalidCredentials
2-
from restclient import __RestClient
1+
from .mpinvalidcredentials import MPInvalidCredentials
2+
from .restclient import __RestClient
33

44
class MercadoPagoRestClient(object):
55
__access_data = None

mercadopago/merchantorder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from mercadopagorestclient import MercadoPagoRestClient
1+
from .mercadopagorestclient import MercadoPagoRestClient
22

33
class MerchantOrder(MercadoPagoRestClient):
44
def __init__(self, client_id, client_secret, access_token):
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from mpexception import MPException
1+
from .mpexception import MPException
22

33
class MPInvalidCredentials(MPException):
44
pass

0 commit comments

Comments
 (0)