Skip to content

Commit

Permalink
auto-lint code
Browse files Browse the repository at this point in the history
  • Loading branch information
ivy-dev-bot committed Jul 16, 2024
1 parent 3187f49 commit fb11252
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions ivy/functional/backends/jax/module.py
Original file line number Diff line number Diff line change
Expand Up @@ -1048,7 +1048,6 @@ def _compute_module_dict(self):
else:
self._module_dict[key] = value._module_dict


def __setattr__(self, name, value):
if name in ["v", "buffers"]:
name = "_" + name
Expand Down Expand Up @@ -1210,7 +1209,6 @@ def _find_variables(
vs[k[1:] if k[0] == "_" else k] = ret
return vs


def _find_buffers(self):
if hasattr(self, "_module_dict"):
for key, sub_module in self._module_dict.items():
Expand Down Expand Up @@ -1335,7 +1333,6 @@ def _call(self, *args, v=None, buffers=None, **kwargs):
return self.__call__(*args, **kwargs)
return super(Model, self).__call__(*args, **kwargs) # noqa: UP008


def __delattr__(self, name):
if hasattr(self, name):
if isinstance(
Expand Down

0 comments on commit fb11252

Please sign in to comment.