Skip to content

Commit 9720238

Browse files
committed
Code style updates
1 parent 89136ba commit 9720238

File tree

6 files changed

+482
-372
lines changed

6 files changed

+482
-372
lines changed

.pre-commit-config.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ repos:
3939
jwst/badpix_selfcal/.* |
4040
jwst/barshadow/.* |
4141
jwst/charge_migration/.* |
42-
jwst/clean_flicker_noise/.* |
4342
jwst/combine_1d/.* |
4443
jwst/coron/.* |
4544
jwst/cube_build/.* |

.ruff.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ exclude = [
3131
"jwst/badpix_selfcal/**.py",
3232
"jwst/barshadow/**.py",
3333
"jwst/charge_migration/**.py",
34-
"jwst/clean_flicker_noise/**.py",
34+
# "jwst/clean_flicker_noise/**.py",
3535
"jwst/combine_1d/**.py",
3636
"jwst/coron/**.py",
3737
"jwst/cube_build/**.py",
@@ -159,7 +159,7 @@ ignore-fully-untyped = true # Turn of annotation checking for fully untyped cod
159159
"jwst/badpix_selfcal/**.py" = ["D", "N", "A", "ARG", "B", "C4", "ICN", "INP", "ISC", "LOG", "NPY", "PGH", "PTH", "S", "SLF", "SLOT", "T20", "TRY", "UP", "YTT", "E501"]
160160
"jwst/barshadow/**.py" = ["D", "N", "A", "ARG", "B", "C4", "ICN", "INP", "ISC", "LOG", "NPY", "PGH", "PTH", "S", "SLF", "SLOT", "T20", "TRY", "UP", "YTT", "E501"]
161161
"jwst/charge_migration/**.py" = ["D", "N", "A", "ARG", "B", "C4", "ICN", "INP", "ISC", "LOG", "NPY", "PGH", "PTH", "S", "SLF", "SLOT", "T20", "TRY", "UP", "YTT", "E501"]
162-
"jwst/clean_flicker_noise/**.py" = ["D", "N", "A", "ARG", "B", "C4", "ICN", "INP", "ISC", "LOG", "NPY", "PGH", "PTH", "S", "SLF", "SLOT", "T20", "TRY", "UP", "YTT", "E501"]
162+
# "jwst/clean_flicker_noise/**.py" = ["D", "N", "A", "ARG", "B", "C4", "ICN", "INP", "ISC", "LOG", "NPY", "PGH", "PTH", "S", "SLF", "SLOT", "T20", "TRY", "UP", "YTT", "E501"]
163163
"jwst/combine_1d/**.py" = ["D", "N", "A", "ARG", "B", "C4", "ICN", "INP", "ISC", "LOG", "NPY", "PGH", "PTH", "S", "SLF", "SLOT", "T20", "TRY", "UP", "YTT", "E501"]
164164
"jwst/coron/**.py" = ["D", "N", "A", "ARG", "B", "C4", "ICN", "INP", "ISC", "LOG", "NPY", "PGH", "PTH", "S", "SLF", "SLOT", "T20", "TRY", "UP", "YTT", "E501"]
165165
"jwst/cube_build/**.py" = ["D", "N", "A", "ARG", "B", "C4", "ICN", "INP", "ISC", "LOG", "NPY", "PGH", "PTH", "S", "SLF", "SLOT", "T20", "TRY", "UP", "YTT", "E501"]
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
"""Correct ramp or rate data for flicker noise."""
2+
13
from .clean_flicker_noise_step import CleanFlickerNoiseStep
24

3-
__all__ = ['CleanFlickerNoiseStep']
5+
__all__ = ["CleanFlickerNoiseStep"]

0 commit comments

Comments
 (0)