Skip to content

Commit a44387c

Browse files
fixed typos
1 parent b316659 commit a44387c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mkl_fft/_scipy_fft_backend.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,15 +49,15 @@
4949

5050
def __ua_function__(method, args, kwargs):
5151
"""Fetch registered UA function."""
52-
fn = _implemented.get(method, None)
52+
fn = __implemented.get(method, None)
5353
if fn is None:
5454
return NotImplemented
5555
return fn(*args, **kwargs)
5656

5757
def _implements(scipy_func):
5858
"""Decorator adds function to the dictionary of implemented UA functions"""
5959
def inner(func):
60-
_implemented[scipy_func] = func
60+
__implemented[scipy_func] = func
6161
return func
6262

6363
return inner

0 commit comments

Comments
 (0)