Skip to content

CalledAfterValues

Source code in src/library_analyzer/processing/api/_extract_called_after_functions.py
@dataclass
class CalledAfterValues:
    function_name: str
    called_after_functions: list[str]
    after_or_before: str

after_or_before: str instance-attribute

called_after_functions: list[str] instance-attribute

function_name: str instance-attribute

__init__(function_name, called_after_functions, after_or_before)