From a479a43f4cede7bdd4a7fb3ce697bf55b945f588 Mon Sep 17 00:00:00 2001 From: Abdelrahman Date: Sun, 20 Apr 2025 21:32:38 +0100 Subject: [PATCH] Reformat --- codegen/datatypes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codegen/datatypes.py b/codegen/datatypes.py index 3ae8dd5..deb0485 100644 --- a/codegen/datatypes.py +++ b/codegen/datatypes.py @@ -46,7 +46,7 @@ class CQualifier(Enum): class CPointerType(Enum): NONE = "" SINGLE = "*" - DOUBLE = "**" + DOUBLE = "**" def __str__(self) -> str: return self.value