removed blanks to make pre-commit check happy

This commit is contained in:
Bernhard Boser 2020-11-09 18:12:55 -08:00 committed by Scott Shawcroft
parent 513253bc3f
commit e19782633a
No known key found for this signature in database
GPG Key ID: 0DFD512649C052DA
1 changed files with 2 additions and 2 deletions

View File

@ -35,12 +35,12 @@
//| Example:
//| import msgpack
//| from io import StringIO
//|
//|
//| s = StringIO()
//| msgpack.pack({'list': [True, False, None, 1, 'abc'], 'str': 'blah'}, s)
//| s.seek(0)
//| print(msgpack.unpack(s))"""
//|
//|
//| def pack(obj, stream):
//| """Pack obj to stream."""