Skip to content

Commit c14689a

Browse files
sichinagamtezzele
authored andcommitted
Remove None type
1 parent 7c1ec97 commit c14689a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pydmd/utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import warnings
44
from numbers import Number
5-
from typing import NamedTuple, Union
5+
from typing import NamedTuple
66
from collections import namedtuple
77
import numpy as np
88
from numpy.lib.stride_tricks import sliding_window_view
@@ -197,7 +197,7 @@ def compute_rqb(
197197
oversampling: int,
198198
power_iters: int,
199199
Omega: np.ndarray = None,
200-
seed: Union[None, int] = None,
200+
seed: int = None,
201201
) -> NamedTuple(
202202
"RQB", [("Q", np.ndarray), ("B", np.ndarray), ("Omega", np.ndarray)]
203203
):

0 commit comments

Comments
 (0)