Skip to content

Commit

Permalink
Correct comment about in_memory
Browse files Browse the repository at this point in the history
  • Loading branch information
mcara committed Feb 7, 2025
1 parent 85239f9 commit 73ccb29
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion jwst/resample/resample_spec_step.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class ResampleSpecStep(Step):
output_wcs = string(default='') # Custom output WCS
single = boolean(default=False) # Resample each input to its own output grid
blendheaders = boolean(default=True) # Blend metadata from inputs into output
in_memory = boolean(default=True) # Keep images in memory when 'single' is False
in_memory = boolean(default=True) # Keep images in memory
""" # noqa: E501

def process(self, input):
Expand Down
2 changes: 1 addition & 1 deletion jwst/resample/resample_step.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class ResampleStep(Step):
output_wcs = string(default='') # Custom output WCS
single = boolean(default=False) # Resample each input to its own output grid
blendheaders = boolean(default=True) # Blend metadata from inputs into output
in_memory = boolean(default=True) # Keep images in memory when 'single' is False
in_memory = boolean(default=True) # Keep images in memory
""" # noqa: E501

reference_file_types: list = []
Expand Down

0 comments on commit 73ccb29

Please sign in to comment.