added missing utils typehint
This commit is contained in:
parent
0c21b6a8e0
commit
8e514bf6f4
|
@ -16,7 +16,7 @@ import numpy as np
|
||||||
import h5py
|
import h5py
|
||||||
|
|
||||||
from . import version
|
from . import version
|
||||||
from ._typehints import FloatSequence
|
from ._typehints import IntSequence, FloatSequence
|
||||||
|
|
||||||
# limit visibility
|
# limit visibility
|
||||||
__all__=[
|
__all__=[
|
||||||
|
@ -387,7 +387,7 @@ def execution_stamp(class_name: str,
|
||||||
|
|
||||||
def hybrid_IA(dist: np.ndarray,
|
def hybrid_IA(dist: np.ndarray,
|
||||||
N: int,
|
N: int,
|
||||||
rng_seed = None) -> np.ndarray:
|
rng_seed: Union[int, IntSequence] = None) -> np.ndarray:
|
||||||
"""
|
"""
|
||||||
Hybrid integer approximation.
|
Hybrid integer approximation.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue