Skip to content

Commit

Permalink
remove type annotations.
Browse files Browse the repository at this point in the history
  • Loading branch information
paquiteau committed Feb 19, 2024
1 parent c9f5ca1 commit 3e138b8
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/modopt/opt/linear/wavelet.py
Original file line number Diff line number Diff line change
Expand Up @@ -285,10 +285,10 @@ class TorchWaveletTransform:

def __init__(
self,
shape: tuple[int, ...],
wavelet: str,
level: int,
mode: str,
shape,
wavelet,
level,
mode,
):
self.wavelet = wavelet
self.level = level
Expand Down Expand Up @@ -417,10 +417,10 @@ class CupyWaveletTransform(LinearParent):

def __init__(
self,
shape: tuple[int, ...],
wavelet: str,
level: int,
mode: str,
shape,
wavelet,
level,
mode,
):
self.wavelet = wavelet
self.level = level
Expand Down

0 comments on commit 3e138b8

Please sign in to comment.