Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ repos:
- id: numpydoc-validation
exclude: |
(?x)^(
jwst/flatfield/.* |
jwst/fringe/.* |
jwst/ipc/.* |
jwst/mrs_imatch/.* |
Expand Down
2 changes: 0 additions & 2 deletions .ruff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ quote-style = "double"
indent-style = "space"
docstring-code-format = true
exclude = [
"jwst/flatfield/**.py",
"jwst/fringe/**.py",
"jwst/ipc/**.py",
"jwst/mrs_imatch/**.py",
Expand Down Expand Up @@ -96,7 +95,6 @@ ignore-fully-untyped = true # Turn off annotation checking for fully untyped co
"jwst/associations/tests*" = [
"F841", # unused variable
]
"jwst/flatfield/**.py" = ["D", "N", "A", "ARG", "B", "C4", "ICN", "INP", "ISC", "LOG", "NPY", "PGH", "PTH", "S", "SLF", "SLOT", "T20", "TRY", "UP", "YTT", "E501"]
"jwst/fringe/**.py" = ["D", "N", "A", "ARG", "B", "C4", "ICN", "INP", "ISC", "LOG", "NPY", "PGH", "PTH", "S", "SLF", "SLOT", "T20", "TRY", "UP", "YTT", "E501"]
"jwst/ipc/**.py" = ["D", "N", "A", "ARG", "B", "C4", "ICN", "INP", "ISC", "LOG", "NPY", "PGH", "PTH", "S", "SLF", "SLOT", "T20", "TRY", "UP", "YTT", "E501"]
"jwst/mrs_imatch/**.py" = ["D", "N", "A", "ARG", "B", "C4", "ICN", "INP", "ISC", "LOG", "NPY", "PGH", "PTH", "S", "SLF", "SLOT", "T20", "TRY", "UP", "YTT", "E501"]
Expand Down
4 changes: 3 additions & 1 deletion jwst/flatfield/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
"""Correct rate data for flat field effects."""

from .flat_field_step import FlatFieldStep

__all__ = ['FlatFieldStep']
__all__ = ["FlatFieldStep"]
Loading