Skip to content

Commit

Permalink
pre-commit fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jzuhone committed Apr 17, 2024
1 parent f314d0f commit c1fecf8
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions acis_thermal_check/apps/dpamyt_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
weeks.
"""
import sys

import matplotlib

from acis_thermal_check import ACISThermalCheck, get_options
Expand All @@ -22,19 +23,17 @@

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 = {
"1DPAMYT": [(1, 2.0), (50, 1.0), (99, 2.0)],
"PITCH": [(1, 3.0), (99, 3.0)],
"TSCPOS": [(1, 2.5), (99, 2.5)],
}
# Specify the temperature where only those temps greater
# than this temperature will be displayed on the histogram.
hist_limit = [20.0]

# Call the superclass' __init__ with the arguments
super().__init__(
"1dpamyt",
"dpamyt",
valid_limits,
hist_limit)
super().__init__("1dpamyt", "dpamyt", valid_limits, hist_limit)

def _calc_model_supp(self, model, state_times, states, ephem, state0):
"""
Expand Down

0 comments on commit c1fecf8

Please sign in to comment.