Skip to content

Commit

Permalink
Change _jac_ to __jac__ for mtllm
Browse files Browse the repository at this point in the history
  • Loading branch information
ypkang committed Sep 9, 2024
1 parent f8b58ce commit 2b9e171
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jac-mtllm/mtllm/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def get_object_string(obj: Any) -> str: # noqa: ANN401
args = ", ".join(
f"{key}={get_object_string(value)}"
for key, value in vars(obj).items()
if key != "_jac_"
if key != "__jac__"
)
return f"{obj.__class__.__name__}({args})"
else:
Expand Down

0 comments on commit 2b9e171

Please sign in to comment.