summaryrefslogtreecommitdiff
path: root/src/services/api/graphql
diff options
context:
space:
mode:
authorDaniil Baturin <daniil@vyos.io>2026-06-29 15:58:23 +0100
committerGitHub <noreply@github.com>2026-06-29 15:58:23 +0100
commit772ccb06548fb1a65d8623ea545facb0bcabb97c (patch)
tree1b0c279456eeae262fa5815cff7045523bc4c166 /src/services/api/graphql
parent4a888ac808c29323d3adb3862d908e7cb2bfc592 (diff)
parent094928ba02bbabf3807ebe8f5ae77b957435d288 (diff)
downloadvyos-1x-772ccb06548fb1a65d8623ea545facb0bcabb97c.tar.gz
vyos-1x-772ccb06548fb1a65d8623ea545facb0bcabb97c.zip
Merge pull request #5298 from vyos/ci/T8490-typos-vyos-1x
ci: T8490: fix typos in comments, strings, and local identifiers
Diffstat (limited to 'src/services/api/graphql')
-rw-r--r--src/services/api/graphql/graphql/mutations.py2
-rw-r--r--src/services/api/graphql/graphql/queries.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/services/api/graphql/graphql/mutations.py b/src/services/api/graphql/graphql/mutations.py
index c979d06e8..dc5eedfd5 100644
--- a/src/services/api/graphql/graphql/mutations.py
+++ b/src/services/api/graphql/graphql/mutations.py
@@ -80,7 +80,7 @@ def make_mutation_resolver(mutation_name, class_name, session_func):
return {'success': False, 'errors': [error]}
return {'success': False, 'errors': ['not authenticated']}
else:
- # AtrributeError will have already been raised if no
+ # AttributeError will have already been raised if no
# auth_type; validation and defaultValue ensure it is
# one of the previous cases, so this is never reached.
pass
diff --git a/src/services/api/graphql/graphql/queries.py b/src/services/api/graphql/graphql/queries.py
index 3a8d12344..f5a5e8cb2 100644
--- a/src/services/api/graphql/graphql/queries.py
+++ b/src/services/api/graphql/graphql/queries.py
@@ -80,7 +80,7 @@ def make_query_resolver(query_name, class_name, session_func):
return {'success': False, 'errors': [error]}
return {'success': False, 'errors': ['not authenticated']}
else:
- # AtrributeError will have already been raised if no
+ # AttributeError will have already been raised if no
# auth_type; validation and defaultValue ensure it is
# one of the previous cases, so this is never reached.
pass