Skip to content
Snippets Groups Projects
Commit 0ccd2278 authored by Theo Steininger's avatar Theo Steininger
Browse files

Fixed bug in fft_smoothing_operator.py

parent 57775452
No related branches found
No related tags found
No related merge requests found
Pipeline #
......@@ -70,7 +70,8 @@ class FFTSmoothingOperator(SmoothingOperator):
def _get_transformator(self, dtype):
if dtype not in self._transformator_cache:
self._transformator_cache[dtype] = FFTOperator(self.domain,
domain_dtype=dtype,
target=np.complex)
self._transformator_cache[dtype] = FFTOperator(
self.domain,
domain_dtype=dtype,
target_dtype=np.complex)
return self._transformator_cache[dtype]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment