Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/black_format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
1 change: 0 additions & 1 deletion string_to_code/to_ada.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
from . import utils
from . import core


_get_function_name = utils.get_function_name_fun("Proc_")

_NULL_CALL = "null;"
Expand Down
1 change: 0 additions & 1 deletion string_to_code/to_algol68.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
from . import core
from . import utils


_get_function_name = utils.get_function_name_fun("p")


Expand Down
1 change: 0 additions & 1 deletion string_to_code/to_ballerina.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
from . import utils
from . import c_like_utils


_get_function_name = utils.get_function_name_fun("fun_")


Expand Down
1 change: 0 additions & 1 deletion string_to_code/to_bash.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
from . import core
from . import utils


_get_function_name = utils.get_function_name_fun()


Expand Down
1 change: 0 additions & 1 deletion string_to_code/to_c.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
from . import utils
from . import c_like_utils


_get_function_name = utils.get_function_name_fun()


Expand Down
1 change: 0 additions & 1 deletion string_to_code/to_cobol.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
from . import core
from . import utils


_get_function_name = utils.get_function_name_fun("P_")


Expand Down
1 change: 0 additions & 1 deletion string_to_code/to_cpp.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
from . import utils
from . import c_like_utils


_get_function_name = utils.get_function_name_fun()


Expand Down
1 change: 0 additions & 1 deletion string_to_code/to_fortran90.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
from . import core
from . import utils


_get_function_name = utils.get_function_name_fun("fun_")


Expand Down
1 change: 0 additions & 1 deletion string_to_code/to_haskell.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
from . import core
from . import utils


_get_function_name = utils.get_function_name_fun()


Expand Down
1 change: 0 additions & 1 deletion string_to_code/to_java.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
from . import utils
from . import c_like_utils


_get_function_name = utils.get_function_name_fun("fun")


Expand Down
1 change: 0 additions & 1 deletion string_to_code/to_kotlin.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
from . import core
from . import utils


_get_function_name = utils.get_function_name_fun("fun")


Expand Down
1 change: 0 additions & 1 deletion string_to_code/to_lisp.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
from . import core
from . import utils


_get_function_name = utils.get_function_name_fun()


Expand Down
1 change: 0 additions & 1 deletion string_to_code/to_nim.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
from . import utils
from . import c_like_utils


_get_function_name = utils.get_function_name_fun("fun")


Expand Down
1 change: 0 additions & 1 deletion string_to_code/to_pascal.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
from . import utils
from . import c_like_utils


_get_function_name = utils.get_function_name_fun("p_")


Expand Down
1 change: 0 additions & 1 deletion string_to_code/to_python3.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
from . import core
from . import utils


_get_function_name = utils.get_function_name_fun()


Expand Down
1 change: 0 additions & 1 deletion string_to_code/to_rust.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
from . import utils
from . import c_like_utils


_get_function_name = utils.get_function_name_fun()


Expand Down