Skip to content

Commit c419602

Browse files
committed
ruff format
1 parent 5f6bb07 commit c419602

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

lsl_definitions/generators/lscript.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -700,9 +700,7 @@ def gen_mono_library_defs(definitions: LSLDefinitions, template_path: str) -> st
700700
args_str = ", ".join(
701701
f"{a.type.lsl.meta.cs_name} {_cs_ident(a.name)}" for a in func.arguments
702702
)
703-
new_defs += (
704-
f" public static {func.ret_type.lsl.meta.cs_name} {func.name}({args_str}) {{\n"
705-
)
703+
new_defs += f" public static {func.ret_type.lsl.meta.cs_name} {func.name}({args_str}) {{\n"
706704

707705
call_args = []
708706
for arg in func.arguments:

0 commit comments

Comments
 (0)