@@ -104,14 +104,16 @@ class Tymee(hioing.Mixin):
104104 Tymee has .tyme property that returns the artificial or simulated or cycle time
105105 from its referenced Tymist instance ._tymist.
106106
107+ Class Attributes:
108+
107109 Attributes:
108110
109111 Properties:
110- . tyme (float | None): relative cycle time of associated Tymist which is
112+ tyme (float | None): relative cycle time of associated Tymist which is
111113 provided by calling .tymth function wrapper closure which is obtained
112114 from Tymist.tymen().
113115 None means not assigned yet.
114- . tymth (Callable | None): function wrapper closure returned by
116+ tymth (Callable | None): function wrapper closure returned by
115117 Tymist.tymen() method. When .tymth is called it returns associated
116118 Tymist.tyme. Provides injected dependency on Tymist cycle tyme base.
117119 None means not assigned yet.
@@ -120,7 +122,7 @@ class Tymee(hioing.Mixin):
120122 .wind injects ._tymth dependency from associated Tymist to get its .tyme
121123
122124 Hidden:
123- . _tymth is injected function wrapper closure returned by .tymen() of
125+ _tymth is injected function wrapper closure returned by .tymen() of
124126 associated Tymist instance that returns Tymist .tyme. when called.
125127
126128 """
@@ -184,17 +186,17 @@ class Tymer(Tymee):
184186 Attributes:
185187
186188 Inherited Properties:
187- . tyme is float relative cycle time of associated Tymist .tyme obtained
189+ tyme is float relative cycle time of associated Tymist .tyme obtained
188190 via injected .tymth function wrapper closure.
189- . tymth is function wrapper closure returned by Tymist .tymeth() method.
191+ tymth is function wrapper closure returned by Tymist .tymeth() method.
190192 When .tymth is called it returns associated Tymist .tyme.
191193 .tymth provides injected dependency on Tymist tyme base.
192194
193195 Properties:
194- . duration = tyme duration of tymer in seconds from ._start to ._stop
195- . elaspsed = tyme elasped in seconds since ._start
196- . remaining = tyme remaining in seconds until ._stop
197- . expired = True if expired, False otherwise, i.e. .tyme >= ._stop
196+ duration (float): tyme duration in seconds from ._start to ._stop
197+ elaspsed (float): tyme elasped in seconds since ._start
198+ remaining (float): tyme remaining in seconds until ._stop
199+ expired (bool): True if expired, False otherwise, i.e. .tyme >= ._stop
198200
199201 Inherited Methods:
200202 .wind is injects ._tymth dependency
@@ -204,10 +206,10 @@ class Tymer(Tymee):
204206 .restart() = restart tymer at last ._stop so no time lost
205207
206208 Hidden:
207- . _tymth is injected function wrapper closure returned by .tymen() of
209+ _tymth (closure): injected function wrapper closure returned by .tymen() of
208210 associated Tymist instance that returns Tymist .tyme. when called.
209- . _start is start tyme in seconds
210- . _stop is stop tyme in seconds
211+ _start (float): start tyme in seconds
212+ _stop (float): stop tyme in seconds
211213
212214 """
213215 Duration = 0.0 # default duration when not provided
0 commit comments