diff options
author | Munyoki Kilyungi | 2024-02-08 12:44:56 +0300 |
---|---|---|
committer | Munyoki Kilyungi | 2024-03-04 11:57:58 +0300 |
commit | b7129cf53bb5250c734540d87b88780ba5fbc981 (patch) | |
tree | 20647a264167ed73583adb741e87d810c534dabe /gn_auth/auth/authorisation | |
parent | cd6eebd85d32feb289ccecd1aee45fb40b03d77f (diff) | |
download | gn-auth-b7129cf53bb5250c734540d87b88780ba5fbc981.tar.gz |
Remove redundant error code for InvalidData.
Signed-off-by: Munyoki Kilyungi <me@bonfacemunyoki.com>
Diffstat (limited to 'gn_auth/auth/authorisation')
-rw-r--r-- | gn_auth/auth/authorisation/errors.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gn_auth/auth/authorisation/errors.py b/gn_auth/auth/authorisation/errors.py index 3bc7a04..60d6a22 100644 --- a/gn_auth/auth/authorisation/errors.py +++ b/gn_auth/auth/authorisation/errors.py @@ -23,7 +23,6 @@ class InvalidData(AuthorisationError): """ Exception if user requests invalid data """ - error_code: int = 400 class InconsistencyError(AuthorisationError): """ |