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 5797608 commit d4f5ee6Copy full SHA for d4f5ee6
exir/program/_program.py
@@ -109,8 +109,8 @@
109
# Define a stub decorator that does nothing
110
def et_logger(api_name: str) -> Callable[[Any], Any]:
111
def decorator(func: Callable[..., Any]) -> Callable[..., Any]:
112
- def wrapper(self: Any, *args: Any, **kwargs: Any) -> Any:
113
- return func(self, *args, **kwargs)
+ def wrapper(*args: Any, **kwargs: Any) -> Any:
+ return func(*args, **kwargs)
114
115
return wrapper
116
0 commit comments