Skip to content

Commit

Permalink
Fix missing comma (#959)
Browse files Browse the repository at this point in the history
  • Loading branch information
jday1 authored Mar 23, 2023
1 parent 45838ec commit b34063d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clearml/automation/controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ def __init__(
packages=None, # type: Optional[Union[str, Sequence[str]]]
repo=None, # type: Optional[str]
repo_branch=None, # type: Optional[str]
repo_commit=None # type: Optional[str]
repo_commit=None, # type: Optional[str]
artifact_serialization_function=None, # type: Optional[Callable[[Any], Union[bytes, bytearray]]]
artifact_deserialization_function=None # type: Optional[Callable[[bytes], Any]]
):
Expand Down

0 comments on commit b34063d

Please sign in to comment.