Skip to content

Commit

Permalink
Merge pull request #68 from lsst/tickets/DM-16296-ip_isr
Browse files Browse the repository at this point in the history
DM-16296: Fix flake8 warnings
  • Loading branch information
timj committed Oct 24, 2018
2 parents 5f20d24 + 322c2ee commit 6c7ed55
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion python/lsst/ip/isr/assembleCcdTask.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ class AssembleCcdConfig(pexConfig.Config):


class AssembleCcdTask(pipeBase.Task):
"""!
r"""!
@anchor AssembleCcdTask_
@brief Assemble a set of amplifier images into a full detector size set of pixels.
Expand Down
2 changes: 1 addition & 1 deletion python/lsst/ip/isr/isrTask.py
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ class IsrTaskConfig(pexConfig.Config):


class IsrTask(pipeBase.CmdLineTask):
"""!
r"""!
@anchor IsrTask_
@brief Apply common instrument signature correction algorithms to a raw frame.
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[flake8]
max-line-length = 110
ignore = E133, E226, E228, N802, N803, N806, E266
ignore = E133, E226, E228, N802, N803, N806, E266, W504
# TODO: remove E266 when Task documentation is converted to rst in DM-14207.
exclude =
__init__.py

[tool:pytest]
addopts = --flake8
flake8-ignore = E133 E226 E228 N802 N803 N806
flake8-ignore = E133 E226 E228 N802 N803 N806 W504
# TODO: remove E266 lines when Task documentation is converted to rst in DM-14207.
assembleCcdTask.py E266
isrTask.py E266

0 comments on commit 6c7ed55

Please sign in to comment.