Skip to content

Commit 4ee4958

Browse files
authored
[fix] Fix a missing super-init in the GEVD beamformer (#707)
1 parent 154c52f commit 4ee4958

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

asteroid/dsp/beamforming.py

+1
Original file line numberDiff line numberDiff line change
@@ -268,6 +268,7 @@ class GEVDBeamformer(Beamformer):
268268
"""
269269

270270
def __init__(self, mu: float = 1.0, rank: int = 1):
271+
super().__init__()
271272
self.mu = mu
272273
self.rank = rank
273274

0 commit comments

Comments
 (0)