diff options
| author | Yuriy Andamasov <yuriy@vyos.io> | 2026-06-29 10:28:43 +0300 |
|---|---|---|
| committer | Yuriy Andamasov <yuriy@vyos.io> | 2026-06-29 15:10:10 +0300 |
| commit | 094928ba02bbabf3807ebe8f5ae77b957435d288 (patch) | |
| tree | b435c65401c374221735a47f18fbee7be7ea4301 /src/services | |
| parent | fe27e9cedb1bc7a91095a19d1867cfda428e12fe (diff) | |
| download | vyos-1x-094928ba02bbabf3807ebe8f5ae77b957435d288.tar.gz vyos-1x-094928ba02bbabf3807ebe8f5ae77b957435d288.zip | |
ci: T8490: fix typos in comments, strings, and local identifiers
Reaches a clean typos baseline for the T8490 ruleset pilot. Categories:
- Comments/docs: recursivly, taret, passsed, characted, arhive, AtrributeError;
"ned" -> "new" (migration comments).
- Messages/strings: writeable -> writable (x5); OCaml log "Commandis" -> "Command is".
- Local variables (all refs in-function): commited, formating, presistent;
inpt_range -> input_range; tz_datas -> tz_data_raw (avoids the tz_data collision).
- Self-contained renames (definition + all references in-file): formated_stats,
_get_formatted_output_conections -> ..._connections, expension_failure ->
expansion_failure (ping + traceroute), snmpd_restart_reqired -> ..._required.
False positives are allowlisted centrally (vyos/.github, separate PR), NOT changed
here: mke2fs, Maya-calendar "Mak", RFC 4122 "IDentifier" (hostapd), and VPP's
"U-Forwrd" bridge-domain column header (op_mode/vpp.py + the VPP smoketest assert
the real upstream `vppctl` output). Verified: typos clean, py_compile of every
edited .py, zero remaining old-identifier references.
🤖 Generated by [robots](https://vyos.io)
Diffstat (limited to 'src/services')
| -rw-r--r-- | src/services/api/graphql/graphql/mutations.py | 2 | ||||
| -rw-r--r-- | src/services/api/graphql/graphql/queries.py | 2 |
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 |
