игнорирование недоделаных патчей, удаление лишних импортов

This commit is contained in:
2025-09-02 11:11:17 +03:00
parent 6c01d9ca07
commit d0744050d2
12 changed files with 13 additions and 17 deletions
+14
View File
@@ -0,0 +1,14 @@
"""Change application icon"""
priority = 0
import struct
def float_to_hex(f):
b = struct.pack(">f", f)
return b.hex()
def apply(config: dict) -> bool:
assert float_to_hex(1.5) == "0x3fc00000"
return False