Skip to content

Commit

Permalink
type error fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cjnbennett committed Oct 29, 2024
1 parent b381298 commit 63557a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/app/api/sr.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def download_band(name: str, band: int) -> bytes:
print("download_band response: " + str(response))
content = response['Body'].read()
response['Body'].close()
print("download_band content len: " + len(content))
print("download_band content len: " + str(len(content)))
return content

def get_scene(lat: float, lng: float) -> list[bytes]:
Expand Down

0 comments on commit 63557a7

Please sign in to comment.