We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af06547 commit b4983acCopy full SHA for b4983ac
2 files changed
setup.py
@@ -4,7 +4,7 @@
4
import subprocess
5
6
setup(name="stitchclient",
7
- version="0.4.4",
+ version="0.4.6",
8
description="A Stitch API client for Python",
9
author="Stitch",
10
author_email="support@stitchdata.com",
stitchclient/client.py
@@ -28,8 +28,7 @@ def __init__(self,
28
batch_size_bytes=DEFAULT_BATCH_SIZE_BYTES,
29
batch_delay_millis=DEFAULT_BATCH_DELAY_MILLIS):
30
31
- assert(isinstance(client_id, int),
32
- 'client_id is not an integer: {}'.format(client_id))
+ assert isinstance(client_id, int), 'client_id is not an integer: {}'.format(client_id) # nopep8
33
34
self.client_id = client_id
35
self.token = token
0 commit comments