From 1b3b74127aefd9f338bdc9633a1dec25513fac11 Mon Sep 17 00:00:00 2001 From: raj-open Date: Mon, 20 Jan 2025 20:39:40 +0100 Subject: [PATCH] guid-stdlibs > v0.8.0: linting --- src/ifcopenshell-python/test/test_guid.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/ifcopenshell-python/test/test_guid.py b/src/ifcopenshell-python/test/test_guid.py index 9381b1c8ea..53af52bbed 100644 --- a/src/ifcopenshell-python/test/test_guid.py +++ b/src/ifcopenshell-python/test/test_guid.py @@ -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,