diff options
author | Wolfgang Müller | 2024-11-15 15:26:02 +0100 |
---|---|---|
committer | Wolfgang Müller | 2024-11-15 15:26:02 +0100 |
commit | 05f139746c38dd490d10bd3593d6e31ea0516df2 (patch) | |
tree | 9b53059c4420d108aac01f6b197357e2c35d057f | |
parent | e93aaec29b8b572ca4cbb6ed5fda79af1495ea08 (diff) | |
download | hircine-05f139746c38dd490d10bd3593d6e31ea0516df2.tar.gz |
backend/api: Remove superfluous scalar definition
Sadly we couldn't find out what this was meant to do, but we believe it
was added in error. All tests pass with this removed, so we can drop it.
Diffstat (limited to '')
-rw-r--r-- | src/hircine/api/__init__.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/hircine/api/__init__.py b/src/hircine/api/__init__.py index 951f375..0f696b8 100644 --- a/src/hircine/api/__init__.py +++ b/src/hircine/api/__init__.py @@ -1,8 +1,3 @@ -import strawberry - -int = strawberry.scalar(int, name="int") - - class APIException(Exception): def __init__(self, graphql_error): self.graphql_error = graphql_error |