Skip to content

Commit

Permalink
pre-commit-config fix, Chandra Limits update
Browse files Browse the repository at this point in the history
  • Loading branch information
ggermain committed Apr 17, 2024
1 parent c1fecf8 commit d6b790a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ repos:
rev: 23.7.0
hooks:
- id: black
language_version: python3.10
language_version: python3.11

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.0.282
hooks:
- id: ruff
args: ["--fix", "--format=github"]
language_version: python3.10
language_version: python3.11
7 changes: 2 additions & 5 deletions acis_thermal_check/apps/dpamyt_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,8 @@

class DPAMYTCheck(ACISThermalCheck):
def __init__(self):
valid_limits = {
"1DPAMYT": [(1, 2.0), (50, 1.0), (99, 2.0)],
"PITCH": [(1, 3.0), (99, 3.0)],
"TSCPOS": [(1, 2.5), (99, 2.5)],
}
valid_limits = [(1, 2.0), (50, 1.0), (99, 2.0)]

# Specify the temperature where only those temps greater
# than this temperature will be displayed on the histogram.
hist_limit = [20.0]
Expand Down

0 comments on commit d6b790a

Please sign in to comment.