diff --git a/src/crested/tl/_utils.py b/src/crested/tl/_utils.py index 95f4d3c..a580ce6 100644 --- a/src/crested/tl/_utils.py +++ b/src/crested/tl/_utils.py @@ -4,7 +4,7 @@ def create_random_sequences( - n_sequences: int, seq_len: int, acgt_distribution: np.ndarray[float] | None + n_sequences: int, seq_len: int, acgt_distribution: np.ndarray | None ) -> np.ndarray: """Create random sequences based on the given ACGT distribution.""" random_sequences = np.empty((n_sequences), dtype=object)