Skip to content

Commit 9227439

Browse files
committed
Bumped version
Signed-off-by: Vishal Rana <vr@labstack.com>
1 parent e1da395 commit 9227439

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Create a file `app.py` with the following content:
1515
```python
1616
from labstack import Client, APIError
1717

18-
client = Client('<ACCOUNT_ID>', '<API_KEY>')
18+
client = Client('<API_KEY>')
1919

2020
try:
2121
response = client.barcode_generate(format='qr_code', content='https://labstack.com')

labstack/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def __call__(self, r):
1111
return r
1212

1313
class Client():
14-
def __init__(self, account_id, api_key):
14+
def __init__(self, api_key):
1515
self.api_key = api_key
1616
self.interceptor = _Interceptor(api_key)
1717

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name='labstack',
5-
version='0.30.0',
5+
version='0.30.1',
66
description='Official Python client library for the LabStack API',
77
long_description='`<https://github.com/labstack/labstack-python>`_',
88
keywords='image compress, image resize, text summary, barcode generate, barcode scan',

0 commit comments

Comments
 (0)