Skip to content

Commit 739cc8a

Browse files
committed
removed typo in README; alphabatezied imports
1 parent 3cb219b commit 739cc8a

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ Get Info
269269
270270
client = Client('sk-XXX')
271271
272-
rresponse = client.links.get_info({
272+
response = client.links.get_info({
273273
"url": "https://www.jet.com",
274274
})
275275

pybutton/resources/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55

66
from pybutton.resources.accounts import Accounts
77
from pybutton.resources.customers import Customers
8+
from pybutton.resources.links import Links
89
from pybutton.resources.merchants import Merchants
910
from pybutton.resources.orders import Orders
10-
from pybutton.resources.links import Links
1111

1212
__all__ = [
1313
Accounts,
1414
Customers,
15+
Links,
1516
Merchants,
16-
Orders,
17-
Links
17+
Orders
1818
]

pybutton/resources/links.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class Links(Resource):
1313
1414
'''
1515

16-
def _path(self, link=None):
16+
def _path(self):
1717
'''Format a url path
1818
1919
Args:

0 commit comments

Comments
 (0)