diff options
author | 2022-05-29 11:16:47 -0700 | |
---|---|---|
committer | 2022-05-29 11:21:04 -0700 | |
commit | d7e8b6dbe0a9b2364b4e1ee7d5856d4a7861eed0 (patch) | |
tree | dc86f8c31f848e3d2bcc684e81f83317529c5541 | |
parent | Remove redundant numpy install in test command (diff) |
Fix deprecation warning from Falcon
The update to v3 deprecated falcon.API in favour of falcon.App.
-rw-r--r-- | snekbox/api/snekapi.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/snekbox/api/snekapi.py b/snekbox/api/snekapi.py index cb0356a..c9c2015 100644 --- a/snekbox/api/snekapi.py +++ b/snekbox/api/snekapi.py @@ -3,7 +3,7 @@ import falcon from .resources import EvalResource -class SnekAPI(falcon.API): +class SnekAPI(falcon.App): """ The main entry point to the snekbox JSON API. |