Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Tulsishah committed Oct 27, 2024
1 parent 3307b5b commit 8d2f50d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion testbench/rest_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -985,7 +985,7 @@ def object_insert(bucket_name):
after_bytes,
test_id,
) = testbench.common.get_retry_uploads_error_after_bytes(db, request)
if (error_code and len(blob.media) >= after_bytes):
if error_code and len(blob.media) >= after_bytes:
if test_id:
db.dequeue_next_instruction(test_id, "storage.objects.insert")
testbench.error.generic(
Expand Down

0 comments on commit 8d2f50d

Please sign in to comment.