Skip to content

Commit d252b90

Browse files
authored
Merge branch 'Boris-code:master' into master
2 parents 8e8cbd6 + 786c026 commit d252b90

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

feapder/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.8.9-beta2
1+
1.8.9-beta3

feapder/network/request.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -270,11 +270,11 @@ def to_dict(self):
270270
if value is not None:
271271
if key in self.__class__.__REQUEST_ATTRS__:
272272
if not isinstance(
273-
value, (bytes, bool, float, int, str, tuple, list, dict)
273+
value, (bool, float, int, str, tuple, list, dict)
274274
):
275275
value = tools.dumps_obj(value)
276276
else:
277-
if not isinstance(value, (bytes, bool, float, int, str)):
277+
if not isinstance(value, (bool, float, int, str)):
278278
value = tools.dumps_obj(value)
279279

280280
request_dict[key] = value

0 commit comments

Comments
 (0)