Fix documentation coverage search directory

This commit is contained in:
Patrick Lehmann
2025-04-26 18:50:07 +02:00
parent f015e1c3a0
commit 4ebf262921
3 changed files with 20 additions and 9 deletions

View File

@@ -53,9 +53,9 @@ class Base:
_value: int #: An internal value.
def __init__(self) -> None:
"""
Initializes the base-class.
"""
# """
# Initializes the base-class.
# """
self._value = 0
@readonly
@@ -75,9 +75,9 @@ class Application(Base):
"""
def __init__(self) -> None:
"""
Initializes the dummy application.
"""
# """
# Initializes the dummy application.
# """
super().__init__()
platform = Platform()