Update collector.py

This commit is contained in:
Filippo Olivo
2025-03-12 19:46:28 +01:00
committed by FilippoOlivo
parent da1ac90b99
commit ed03cac960

View File

@@ -37,7 +37,7 @@ class Collector:
@property @property
def full(self): def full(self):
""" """
Whether all conditions are ready or not. Whether all conditions are ready to be passed to the collector.
:return: True if all conditions are ready. :return: True if all conditions are ready.
:rtype: bool :rtype: bool
@@ -48,7 +48,7 @@ class Collector:
@full.setter @full.setter
def full(self, value): def full(self, value):
""" """
Check the consistency of the value and set the full property. Set the full flag.
:param bool value: The value to set the full property to. :param bool value: The value to set the full property to.
""" """