Coverage for tests/fixtures/docstring_attributes_section.py: 100.00%

5 statements  

« prev     ^ index     » next       coverage.py v7.6.12, created at 2025-03-09 17:28 +0100

1""" 

2Let's describe some attributes. 

3 

4Attributes: 

5 A: Alpha. 

6 B (bytes): Beta. 

7 C: Gamma. 

8 D: Delta. 

9 E (float): Epsilon. 

10""" 

11 

12A: int = 0 

13B: str = "ŧ" 

14C: bool = True 

15D = 3.0 

16E = None