Skip to content

Commit 65bc0ae

Browse files
committed
Fix docstring of init.check_keys
1 parent bcfa715 commit 65bc0ae

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • src/torchjd/autojac/_transform

src/torchjd/autojac/_transform/init.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ def __call__(self, input: EmptyTensorDict) -> Gradients:
2424
def check_keys(self, input_keys: set[Tensor]) -> set[Tensor]:
2525
if not input_keys == set():
2626
raise RequirementError(
27-
f"The input_keys should be the empty set. Found input_keys" f"{input_keys}."
27+
f"The input_keys should be the empty set. Found input_keys {input_keys}."
2828
)
2929
return self.values

0 commit comments

Comments
 (0)