Skip to content

Commit

Permalink
fix torch frontend: fixing a bug in the __init__ method of the Module…
Browse files Browse the repository at this point in the history
… class wherein we were passing the instance itself to the super call.
  • Loading branch information
YushaArif99 committed Sep 10, 2024
1 parent d5c4b07 commit 159afa0
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion ivy/functional/frontends/torch/nn/modules/module.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ class Module(ivy.Module):

def __init__(self, *args, device=None, devices=None, **kwargs) -> None:
super().__init__(
self,
*args,
device=device,
devices=devices,
Expand Down

0 comments on commit 159afa0

Please sign in to comment.