Skip to content

Commit

Permalink
fix: no explicit none
Browse files Browse the repository at this point in the history
  • Loading branch information
Nastaliss committed Jul 1, 2024
1 parent 0acfed9 commit 43e4a50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/pyrostorage/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ def create_annotation(self, media_id: int, observations: List[str]) -> Response:
json={"media_id": media_id, "observations": observations},
)

def update_annotation(self, annotation_id: int, observations: List[str] = None) -> Response:
def update_annotation(self, annotation_id: int, observations: List[str]) -> Response:
"""Update an annotation entry
Example::
Expand Down

0 comments on commit 43e4a50

Please sign in to comment.