Skip to content

Commit

Permalink
Revert "# type: ignore"
Browse files Browse the repository at this point in the history
This reverts commit 32ea53e.
  • Loading branch information
imatiushin committed Sep 5, 2024
1 parent c8806af commit 0bcbc79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deker_server_adapters/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ def update(self, array: "BaseArray", bounds: Slice, data: Numeric) -> None:
url, array, self.ctx, should_check_status=True, method="PUT", request_kwargs=request_kwargs
)
else:
response = self.client.put(f"{self.collection_host}{url}", **request_kwargs) # type: ignore
response = self.client.put(f"{self.collection_host}{url}", **request_kwargs)
except TimeoutException:
raise DekerTimeoutServer(
message=f"Timeout on {self.type.name} update {array}",
Expand Down

0 comments on commit 0bcbc79

Please sign in to comment.