You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
TypeError("Invalid variable type: value should be str, int or float, got True of type <class 'bool'>") is raised if call like await get_users(chat_id=message.chat.id, include_deleted=True)
Expected behavior
You can convert boolean params to strings before sending request
The text was updated successfully, but these errors were encountered:
Describe the bug
Boolean cannot be used in query params
Example
TypeError("Invalid variable type: value should be str, int or float, got True of type <class 'bool'>")
is raised if call likeawait get_users(chat_id=message.chat.id, include_deleted=True)
Expected behavior
You can convert boolean params to strings before sending request
The text was updated successfully, but these errors were encountered: