Skip to content

Commit

Permalink
Slight tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
SolarDrew committed Aug 29, 2024
1 parent 206ab93 commit 9b4ac7d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dkist/dataset/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ def dataset_info_str(ds):
dsID = ds.inventory.get("datasetId", "(no DatasetID)")

if is_tiled:
s = f"This {dstype} {dsID} consists of an array of {tile_shape} Dataset objects\n\nEach "
s = f"This {instr}{dstype} {dsID} consists of an array of {tile_shape} Dataset objects\n\nEach Dataset "
else:
s = "This "
s = f"This {instr}Dataset {dsID} "

s += f"{instr}Dataset {dsID} has {wcs.pixel_n_dim} pixel and {wcs.world_n_dim} world dimensions and consists of {nframes} frames\n"
s += f"has {wcs.pixel_n_dim} pixel and {wcs.world_n_dim} world dimensions and consists of {nframes} frames\n"
if ds.files:
s += f"Files are stored in {ds.files.basepath}\n\n"
s += f"The data are represented by a {type(ds.data)} object:\n{ds.data}\n\n"
Expand Down

0 comments on commit 9b4ac7d

Please sign in to comment.