added missing utils typehint

This commit is contained in:
Daniel Otto de Mentock 2022-01-26 16:36:26 +01:00
parent 0c21b6a8e0
commit 8e514bf6f4
1 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@ import numpy as np
import h5py
from . import version
from ._typehints import FloatSequence
from ._typehints import IntSequence, FloatSequence
# limit visibility
__all__=[
@ -387,7 +387,7 @@ def execution_stamp(class_name: str,
def hybrid_IA(dist: np.ndarray,
N: int,
rng_seed = None) -> np.ndarray:
rng_seed: Union[int, IntSequence] = None) -> np.ndarray:
"""
Hybrid integer approximation.