Action Source code in src/library_analyzer/processing/dependencies/_parameter_dependencies.py 90 91 92 93 94 95 96 97 98 99@dataclass class Action: action: str @classmethod def from_dict(cls, d: dict[str, Any]) -> Action: return cls(d["action"]) def to_dict(self) -> dict[str, Any]: return {"action": self.action} action: str instance-attribute ¶ __init__(action) ¶ from_dict(d) classmethod ¶ Source code in src/library_analyzer/processing/dependencies/_parameter_dependencies.py 94 95 96@classmethod def from_dict(cls, d: dict[str, Any]) -> Action: return cls(d["action"]) to_dict() ¶ Source code in src/library_analyzer/processing/dependencies/_parameter_dependencies.py 98 99def to_dict(self) -> dict[str, Any]: return {"action": self.action}