float assignments to class_handler.py

This commit is contained in:
2025-10-20 04:31:23 +05:30
parent e636fcaea7
commit 8da50b7068
4 changed files with 21 additions and 10 deletions

View File

@ -1,5 +1,5 @@
from enum import Enum, auto
from typing import Any, Callable, Dict, List, Optional, TypedDict
from typing import Any, Dict, List, Optional, TypedDict
from dataclasses import dataclass
from pythonbpf.vmlinux_parser.dependency_node import Field
@ -13,6 +13,7 @@ class AssignmentType(Enum):
FUNCTION_POINTER = auto()
POINTER = auto() # again, probably won't be used
@dataclass
class FunctionSignature(TypedDict):
return_type: str