Just a docstring.
| 8 | def __init__(self): |
| 9 | pass |
| 10 | class ClassWithTheDocstringAndInit: |
| 11 | """Just a docstring.""" |
| 12 | def __init__(self): |
| 13 | pass |
| 14 | class ClassWithInitAndVars: |
| 15 | cls_var = 100 |
| 16 | def __init__(self): |
nothing calls this directly
no outgoing calls
no test coverage detected