diff options
author | 2018-04-10 22:59:29 +0100 | |
---|---|---|
committer | 2018-04-10 22:59:29 +0100 | |
commit | ef774acc05b272da2e3a3e8c6d4946647babda55 (patch) | |
tree | 6a81048f5f790b7689af05b8575db72dd004fd89 /pysite/views/api/bot/user.py | |
parent | Merge remote-tracking branch 'origin/master' (diff) |
Snowflakes should be handled as strings
Diffstat (limited to 'pysite/views/api/bot/user.py')
-rw-r--r-- | pysite/views/api/bot/user.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pysite/views/api/bot/user.py b/pysite/views/api/bot/user.py index 4b66cff0..da5fe0aa 100644 --- a/pysite/views/api/bot/user.py +++ b/pysite/views/api/bot/user.py @@ -11,8 +11,8 @@ from pysite.mixins import DBMixin SCHEMA = Schema([ { - "user_id": int, - "roles": [int], + "user_id": str, + "roles": [str], "username": str, "discriminator": str } |