<!-- NOTE: Only submit issues for Python package "pdoc3" on PyPI. Python package "pdoc" lives elsewhere. --> ### Expected Behavior Dataclass arguments/attributes should display as instance variables ### Actual Behavior Instead they appear as `static` variables ### Steps to Reproduce 1. Create a simple dataclass. e.g. ```python from dataclasses import dataclass @dataclass class Foo: bar: int ``` 2. Run pdoc 3. Observe that the `bar` variable shows up as static ### Additional info - pdoc version: 0.10.0