Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DM-16296: Flake8 fixes #79

Merged
merged 2 commits into from
Oct 25, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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