Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Nov 10, 2023
1 parent 533b141 commit a726106
Showing 1 changed file with 4 additions and 10 deletions.
14 changes: 4 additions & 10 deletions romancal/pipeline/highlevel_pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,13 @@
import logging
from os.path import basename

import numpy as np
from roman_datamodels import datamodels as rdm

import romancal.datamodels.filetype as filetype

# step imports
from romancal.skymatch import SkyMatchStep
from romancal.datamodels import ModelContainer
from romancal.outlier_detection import OutlierDetectionStep
from romancal.resample import ResampleStep
from romancal.lib import dqflags
from romancal.datamodels import ModelContainer

# step imports
from romancal.skymatch import SkyMatchStep

from ..stpipe import RomanPipeline

Expand Down Expand Up @@ -67,7 +62,7 @@ def process(self, input):
result = self.skymatch(input)
result = self.outlierdetection(result)
result = self.resample(result)

return result

def setup_output(self, input):
Expand All @@ -79,4 +74,3 @@ def setup_output(self, input):
self.output_file = input.meta.filename
else:
self.suffix = "ramp"

0 comments on commit a726106

Please sign in to comment.