Skip to content

Commit b4983ac

Browse files
author
Mike DeLaurentis
committed
Fix assertion
1 parent af06547 commit b4983ac

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import subprocess
55

66
setup(name="stitchclient",
7-
version="0.4.4",
7+
version="0.4.6",
88
description="A Stitch API client for Python",
99
author="Stitch",
1010
author_email="[email protected]",

stitchclient/client.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@ def __init__(self,
2828
batch_size_bytes=DEFAULT_BATCH_SIZE_BYTES,
2929
batch_delay_millis=DEFAULT_BATCH_DELAY_MILLIS):
3030

31-
assert(isinstance(client_id, int),
32-
'client_id is not an integer: {}'.format(client_id))
31+
assert isinstance(client_id, int), 'client_id is not an integer: {}'.format(client_id) # nopep8
3332

3433
self.client_id = client_id
3534
self.token = token

0 commit comments

Comments
 (0)