mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
10 lines
187 B
Python
10 lines
187 B
Python
|
class PEP526Class:
|
||
|
"""Sample class with PEP 526 annotations
|
||
|
|
||
|
Attributes:
|
||
|
attr1: Attr1 description.
|
||
|
attr2: Attr2 description.
|
||
|
"""
|
||
|
|
||
|
attr1: int
|
||
|
attr2: str
|