Skip to content

Commit

Permalink
Update gcsfs/tests/test_checkers.py
Browse files Browse the repository at this point in the history
  • Loading branch information
martindurant authored Sep 25, 2024
1 parent 9c5a460 commit f06ecc1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion gcsfs/tests/test_checkers.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ class response:
return response


def google_response_from_data_with_reverse_header_order(expected_data: bytes, actual_data=None):
def google_response_from_data_with_reverse_header_order(
expected_data: bytes, actual_data=None
):
actual_data = actual_data or expected_data
checksum = md5(actual_data)
checksum_b64 = base64.b64encode(checksum.digest()).decode("UTF-8")
Expand Down

0 comments on commit f06ecc1

Please sign in to comment.