Fix docstring

This commit is contained in:
Lukas Klass 2020-05-15 14:34:16 +02:00
parent 4ec4f40423
commit 751d9bd9d3
3 changed files with 3 additions and 3 deletions

View File

@ -20,7 +20,7 @@ class IRadiant(ABC):
size : str size : str
The size of the target. The size of the target.
obstruction : float obstruction : float
The obstruction factor. The obstruction factor as A_ob / A_ap.
""" """
pass pass

View File

@ -63,7 +63,7 @@ class AOpticalComponent(IRadiant):
size : str size : str
The size of the target. The size of the target.
obstruction : float obstruction : float
The obstruction factor. The obstruction factor as A_ob / A_ap.
""" """
signal, size, obstruction = self.__parent.calcSignal() signal, size, obstruction = self.__parent.calcSignal()
info("Calculating signal for class '" + self.__class__.__name__ + "'.") info("Calculating signal for class '" + self.__class__.__name__ + "'.")

View File

@ -57,7 +57,7 @@ class ATarget(IRadiant):
size : str size : str
The size of the target. The size of the target.
obstruction : float obstruction : float
The obstruction factor. The obstruction factor as A_ob / A_ap.
""" """
info("Calculating Signal for class '" + self.__class__.__name__ + "'.") info("Calculating Signal for class '" + self.__class__.__name__ + "'.")
debug(self.__sfd) debug(self.__sfd)