Opus finding
`ManualAction.init` / `LLMAction.init` are dead methods shadowing dataclass __init__ naming
lowmaintainabilityhigh
- backend/wonderwall/environment/env_action.py:31-42
These look like leftover Python-2 / typo'd `__init__` methods on dataclasses. They are dead code (dataclasses already provide __init__) and their existence is confusing.
Recommendation
Delete the `init` methods from both dataclasses.