We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7113a90 commit 2af481eCopy full SHA for 2af481e
src/quaternion/numba_wrapper.py
@@ -21,9 +21,9 @@
21
# "may wish to install numba." + \
22
# "\n" + "!" * 53 + "\n"
23
# warnings.warn(warning_text)
24
- def _identity_decorator_outer(*args, **kwargs):
25
- def _identity_decorator_inner(fn):
26
- return fn
+ def _identity_decorator_outer(fn):
+ def _identity_decorator_inner(*args, **kwargs):
+ return fn(*args, **kwargs)
27
return _identity_decorator_inner
28
njit = _identity_decorator_outer
29
jit = _identity_decorator_outer
0 commit comments