Skip to content

Commit ca8d02f

Browse files
committed
pep
1 parent 1b8abf7 commit ca8d02f

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

examples/bookstore/webserver.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838

3939
bookstore = None
4040

41+
4142
class Book(TypedDict):
4243
title: str
4344

thingsdb/client/baseprotocol.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ def write(
201201
self._pid %= 0x10000 # pid is handled as uint16_t
202202

203203
data = ( # type: ignore
204-
data if is_bin else b'' if data is None else \
204+
data if is_bin else b'' if data is None else
205205
msgpack.packb(data, use_bin_type=True)
206206
)
207207

thingsdb/exceptions.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
_TypeError = TypeError
1212
_CancelledError = asyncio.CancelledError
1313

14+
1415
class ErrData(TypedDict):
1516
error_msg: str
1617
error_code: int

0 commit comments

Comments
 (0)