Skip to content

Commit ea39eaa

Browse files
committed
Pre-commit fix
1 parent cbecce7 commit ea39eaa

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

fractal_tasks_core/channels.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ class OmeroChannel(BaseModel):
5959
wavelength_id: Unique ID for the channel wavelength, e.g. `A01_C01`.
6060
index: Do not change. For internal use only.
6161
label: Name of the channel.
62-
window: Optional `Window` object to set default display settings. If
63-
unset, it will be set to the full bit range of the image
62+
window: Optional `Window` object to set default display settings. If
63+
unset, it will be set to the full bit range of the image
6464
(e.g. 0-65535 for 16 bit images).
6565
color: Optional hex colormap to display the channel in napari (it
6666
must be of length 6, e.g. `00FFFF`).
@@ -372,7 +372,7 @@ def define_omero_channels(
372372
channel.window.min = 0
373373
channel.window.max = 2**bit_depth - 1
374374
else:
375-
# If no channel.window is set, create a new one with full bitrange
375+
# If no channel.window is set, create a new one with full bitrange
376376
# min & max
377377
channel.window = Window(
378378
min=0,

0 commit comments

Comments
 (0)