guid-stdlibs > v0.8.0: linting

This commit is contained in:
raj-open
2025-01-20 20:39:40 +01:00
committed by Thomas Krijnen
parent 85308133e2
commit 1b3b74127a
+2 -1
View File
@@ -56,6 +56,7 @@ ZERO_64 = CHARS_IFC[0]
chars = string.digits + string.ascii_uppercase + string.ascii_lowercase + "_$"
def legacy_compress(g: str) -> str:
bs = [int(g[i : i + 2], 16) for i in range(0, len(g), 2)]
@@ -126,7 +127,7 @@ def test_expand_compress_RANDOM(
(f"{n:02x}", CHARS_IFC[n // 64] + CHARS_IFC[n % 64])
for n in range(0x100)
]
)
) # fmt: skip
def test_expand_compress_BEHAVIOUR_OF_PADDING(
# fixtures
check: TestCase,