__json_truefalse_parse: fix a typo
This commit is contained in:
parent
e9d2c3d53f
commit
0f92f778dc
1 changed files with 1 additions and 1 deletions
|
@ -3230,7 +3230,7 @@ class Mastodon:
|
|||
if (key in json_object and isinstance(json_object[key], six.text_type)):
|
||||
if json_object[key].lower() == 'true':
|
||||
json_object[key] = True
|
||||
if json_object[key].lower() == 'False':
|
||||
if json_object[key].lower() == 'false':
|
||||
json_object[key] = False
|
||||
return json_object
|
||||
|
||||
|
|
Loading…
Reference in a new issue