Skip to content

Commit

Permalink
Merge pull request #79 from lsst/tickets/DM-16296-obs_lsstSim
Browse files Browse the repository at this point in the history
DM-16296: Flake8 fixes
  • Loading branch information
timj committed Oct 25, 2018
2 parents 97be04c + 31b57ac commit 644a3c5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion python/lsst/obs/lsstSim/eimageIsr.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def __init__(self, **kwargs):

@pipeBase.timeMethod
def runDataRef(self, sensorRef):
"""Load the post instrument signature removal image
r"""Load the post instrument signature removal image
\param[in] sensorRef sensor-level butler data reference
Expand Down
4 changes: 2 additions & 2 deletions python/lsst/obs/lsstSim/lsstSimIsrTask.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def setDefaults(self):

class LsstSimIsrTask(IsrTask):

"""
r"""
\section obs_lsstSim_isr_Debug Debug variables
The \link lsst.pipe.base.cmdLineTask.CmdLineTask command line task\endlink interface supports a
Expand Down Expand Up @@ -96,7 +96,7 @@ def unmaskSatHotPixels(self, exposure):
maskarr[idx] &= andMask

def saturationInterpolation(self, ccdExposure):
"""!Unmask hot pixels and interpolate over saturated pixels, in place
r"""!Unmask hot pixels and interpolate over saturated pixels, in place
\param[in,out] ccdExposure exposure to process
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[flake8]
max-line-length = 110
ignore = E133, E226, E228, N802, N803, N806
ignore = E133, E226, E228, N802, N803, N806, W504
exclude = __init__.py, config/*, description/*

[tool:pytest]
addopts = --flake8
flake8-ignore = E133 E226 E228 N802 N803 N806
flake8-ignore = E133 E226 E228 N802 N803 N806 W504

0 comments on commit 644a3c5

Please sign in to comment.