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" 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()