remove some ruff errors

This commit is contained in:
2025-10-01 00:49:23 +05:30
parent 8d5067996f
commit b095828ae2
6 changed files with 14 additions and 8 deletions

View File

@ -6,6 +6,7 @@ from ctypes import c_void_p, c_int64
@section("sometag1")
def sometag(ctx: c_void_p) -> c_int64:
a = 1 + 2 + 1
print(f"{a}")
return c_int64(0)

View File

@ -7,6 +7,7 @@ from ctypes import c_void_p, c_int64
@section("sometag1")
def sometag(ctx: c_void_p) -> c_int64:
a = 1 + 2
print(f"{a}")
return c_int64(0)