Skip to content

Commit

Permalink
type hints, comment fix
Browse files Browse the repository at this point in the history
  • Loading branch information
LTDakin committed Mar 21, 2024
1 parent 4846322 commit 2cdf3f6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion datalab/datalab_session/data_operations/median.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def operate(self):
hdu_list.writeto(fits_buffer)
fits_buffer.seek(0)

# Write the HDU List to the output FITS file in bitbucket
# Write the HDU List to the output FITS file in the bucket
response = store_fits_output(cache_key, fits_buffer)

# TODO: No output yet, need to build a thumbnail service
Expand Down
2 changes: 1 addition & 1 deletion datalab/datalab_session/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
log = logging.getLogger()
log.setLevel(logging.INFO)

def store_fits_output(item_key, fits_buffer):
def store_fits_output(item_key: str, fits_buffer: object) -> object:
"""
Stores a fits into the operation bucket in S3
Expand Down

0 comments on commit 2cdf3f6

Please sign in to comment.