From 6f378ddcdd0e56596eb6ae37e3305ff092bc7a5f Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 18 Jan 2026 10:24:46 +0000 Subject: [PATCH 1/2] chore(deps): update psf/black action to v26 --- .github/workflows/black_format.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/black_format.yml b/.github/workflows/black_format.yml index 73227558..c2aefb6a 100644 --- a/.github/workflows/black_format.yml +++ b/.github/workflows/black_format.yml @@ -16,6 +16,6 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 - - uses: psf/black@782e5605c86aab56be6f905da10dcd3e463fd9c2 # 25.12.0 + - uses: psf/black@6305bf1ae645ab7541be4f5028a86239316178eb # 26.1.0 with: options: "--check --verbose" From 2bad989195a962320e0bf76a8c6694d0446794e0 Mon Sep 17 00:00:00 2001 From: vil02 <65706193+vil02@users.noreply.github.com> Date: Sun, 18 Jan 2026 12:02:22 +0100 Subject: [PATCH 2/2] fix: apply new formatting --- string_to_code/to_ada.py | 1 - string_to_code/to_algol68.py | 1 - string_to_code/to_ballerina.py | 1 - string_to_code/to_bash.py | 1 - string_to_code/to_c.py | 1 - string_to_code/to_cobol.py | 1 - string_to_code/to_cpp.py | 1 - string_to_code/to_fortran90.py | 1 - string_to_code/to_haskell.py | 1 - string_to_code/to_java.py | 1 - string_to_code/to_kotlin.py | 1 - string_to_code/to_lisp.py | 1 - string_to_code/to_nim.py | 1 - string_to_code/to_pascal.py | 1 - string_to_code/to_python3.py | 1 - string_to_code/to_rust.py | 1 - 16 files changed, 16 deletions(-) diff --git a/string_to_code/to_ada.py b/string_to_code/to_ada.py index 2cff60e1..0e2bc5cd 100644 --- a/string_to_code/to_ada.py +++ b/string_to_code/to_ada.py @@ -5,7 +5,6 @@ from . import utils from . import core - _get_function_name = utils.get_function_name_fun("Proc_") _NULL_CALL = "null;" diff --git a/string_to_code/to_algol68.py b/string_to_code/to_algol68.py index 5c139981..2e87ec93 100644 --- a/string_to_code/to_algol68.py +++ b/string_to_code/to_algol68.py @@ -5,7 +5,6 @@ from . import core from . import utils - _get_function_name = utils.get_function_name_fun("p") diff --git a/string_to_code/to_ballerina.py b/string_to_code/to_ballerina.py index 3fcadef4..f0176ab6 100644 --- a/string_to_code/to_ballerina.py +++ b/string_to_code/to_ballerina.py @@ -6,7 +6,6 @@ from . import utils from . import c_like_utils - _get_function_name = utils.get_function_name_fun("fun_") diff --git a/string_to_code/to_bash.py b/string_to_code/to_bash.py index f01be9ea..57078e0a 100644 --- a/string_to_code/to_bash.py +++ b/string_to_code/to_bash.py @@ -5,7 +5,6 @@ from . import core from . import utils - _get_function_name = utils.get_function_name_fun() diff --git a/string_to_code/to_c.py b/string_to_code/to_c.py index 89204262..2cb0e683 100644 --- a/string_to_code/to_c.py +++ b/string_to_code/to_c.py @@ -5,7 +5,6 @@ from . import utils from . import c_like_utils - _get_function_name = utils.get_function_name_fun() diff --git a/string_to_code/to_cobol.py b/string_to_code/to_cobol.py index 6d90fe37..dbaa6507 100644 --- a/string_to_code/to_cobol.py +++ b/string_to_code/to_cobol.py @@ -5,7 +5,6 @@ from . import core from . import utils - _get_function_name = utils.get_function_name_fun("P_") diff --git a/string_to_code/to_cpp.py b/string_to_code/to_cpp.py index 11c1f618..17be6fc1 100644 --- a/string_to_code/to_cpp.py +++ b/string_to_code/to_cpp.py @@ -5,7 +5,6 @@ from . import utils from . import c_like_utils - _get_function_name = utils.get_function_name_fun() diff --git a/string_to_code/to_fortran90.py b/string_to_code/to_fortran90.py index d9396451..cffd8ce7 100644 --- a/string_to_code/to_fortran90.py +++ b/string_to_code/to_fortran90.py @@ -5,7 +5,6 @@ from . import core from . import utils - _get_function_name = utils.get_function_name_fun("fun_") diff --git a/string_to_code/to_haskell.py b/string_to_code/to_haskell.py index 53de2df0..dc032134 100644 --- a/string_to_code/to_haskell.py +++ b/string_to_code/to_haskell.py @@ -5,7 +5,6 @@ from . import core from . import utils - _get_function_name = utils.get_function_name_fun() diff --git a/string_to_code/to_java.py b/string_to_code/to_java.py index 5f1f5bc8..50e65bdd 100644 --- a/string_to_code/to_java.py +++ b/string_to_code/to_java.py @@ -5,7 +5,6 @@ from . import utils from . import c_like_utils - _get_function_name = utils.get_function_name_fun("fun") diff --git a/string_to_code/to_kotlin.py b/string_to_code/to_kotlin.py index c3b44781..f1cc9494 100644 --- a/string_to_code/to_kotlin.py +++ b/string_to_code/to_kotlin.py @@ -5,7 +5,6 @@ from . import core from . import utils - _get_function_name = utils.get_function_name_fun("fun") diff --git a/string_to_code/to_lisp.py b/string_to_code/to_lisp.py index 886a9a1b..b1ed1805 100644 --- a/string_to_code/to_lisp.py +++ b/string_to_code/to_lisp.py @@ -5,7 +5,6 @@ from . import core from . import utils - _get_function_name = utils.get_function_name_fun() diff --git a/string_to_code/to_nim.py b/string_to_code/to_nim.py index b11433fb..81171ce2 100644 --- a/string_to_code/to_nim.py +++ b/string_to_code/to_nim.py @@ -6,7 +6,6 @@ from . import utils from . import c_like_utils - _get_function_name = utils.get_function_name_fun("fun") diff --git a/string_to_code/to_pascal.py b/string_to_code/to_pascal.py index 800fe1f8..098532ad 100644 --- a/string_to_code/to_pascal.py +++ b/string_to_code/to_pascal.py @@ -6,7 +6,6 @@ from . import utils from . import c_like_utils - _get_function_name = utils.get_function_name_fun("p_") diff --git a/string_to_code/to_python3.py b/string_to_code/to_python3.py index cf672d5c..c9633218 100644 --- a/string_to_code/to_python3.py +++ b/string_to_code/to_python3.py @@ -5,7 +5,6 @@ from . import core from . import utils - _get_function_name = utils.get_function_name_fun() diff --git a/string_to_code/to_rust.py b/string_to_code/to_rust.py index 609c6d69..e0e8499d 100644 --- a/string_to_code/to_rust.py +++ b/string_to_code/to_rust.py @@ -6,7 +6,6 @@ from . import utils from . import c_like_utils - _get_function_name = utils.get_function_name_fun()