From 094928ba02bbabf3807ebe8f5ae77b957435d288 Mon Sep 17 00:00:00 2001 From: Yuriy Andamasov Date: Mon, 29 Jun 2026 10:28:43 +0300 Subject: ci: T8490: fix typos in comments, strings, and local identifiers MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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) --- src/op_mode/ipsec.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/op_mode/ipsec.py') diff --git a/src/op_mode/ipsec.py b/src/op_mode/ipsec.py index 3061089ee..b878789a7 100755 --- a/src/op_mode/ipsec.py +++ b/src/op_mode/ipsec.py @@ -412,7 +412,7 @@ def _get_raw_connections_summary(list_conn, list_sas): return tun_dict -def _get_formatted_output_conections(data): +def _get_formatted_output_connections(data): from tabulate import tabulate connections = [] @@ -813,7 +813,7 @@ def show_connections(raw: bool): return _get_raw_data_connections(list_conns, list_sas) connections = _get_raw_data_connections(list_conns, list_sas) - return _get_formatted_output_conections(connections) + return _get_formatted_output_connections(connections) def show_connections_summary(raw: bool): -- cgit v1.2.3