@@ -86,22 +86,22 @@ class Cwg64( BaseCWG ):
8686
8787
8888 #-------------------------------------------------------------------------
89- _NORMALIZE : Final [float ] = 5.421_010_862_427_522_170_037_3e-20 # i.e. 1.0 / (1 << 64)
89+ _NORMALIZE : Final [float ] = 5.421_010_862_427_522_170_037_3e-20 # i.e. 1.0 / (1 << 64) # type: ignore
9090 """The value of this class attribute MUST BE OVERRIDDEN in inheriting
9191 classes if returned random integer values are coded on anything else
9292 than 32 bits. It is THE multiplier constant value to be applied to
9393 pseudo-random number for them to be normalized in interval [0.0, 1.0).
9494 """
9595
96- _OUT_BITS : Final [int ] = 64
96+ _OUT_BITS : Final [int ] = 64 # type: ignore
9797 """The value of this class attribute MUST BE OVERRIDDEN in inheriting
9898 classes if returned random integer values are coded on anything else
9999 than 32 bits.
100100 """
101101
102102
103103 #-------------------------------------------------------------------------
104- def __init__ (self , _seedState : SeedStateType = None , / ) -> None :
104+ def __init__ (self , _seedState : SeedStateType = None , / ) -> None : # type: ignore
105105 """Constructor.
106106
107107 Should _seedState be None then the local time is used as a seed (with
@@ -124,7 +124,7 @@ def next(self) -> int:
124124
125125
126126 #-------------------------------------------------------------------------
127- def seed (self , _seed : Numerical = None , / ) -> None :
127+ def seed (self , _seed : Numerical = None , / ) -> None : # type: ignore
128128 """Initiates the internal state of this pseudo-random generator.
129129 """
130130 if _seed is None or isinstance (_seed , (int , float )):
@@ -140,7 +140,7 @@ def seed(self, _seed: Numerical = None, /) -> None:
140140
141141
142142 #-------------------------------------------------------------------------
143- def setstate (self , _state : StateType = None , / ) -> None :
143+ def setstate (self , _state : StateType = None , / ) -> None : # type: ignore
144144 """Restores the internal state of the generator.
145145
146146 _state should have been obtained from a previous call
0 commit comments