Skip to content

Commit

Permalink
Moved ignore statement
Browse files Browse the repository at this point in the history
  • Loading branch information
CWestICL committed Nov 16, 2023
1 parent 6d8029b commit 7899756
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions finesse/hardware/plugins/temperature/senecak107.py
Expand Up @@ -145,8 +145,8 @@ def calc_temp(self, vals: numpy.ndarray) -> numpy.ndarray:
vals += self.MIN_TEMP
return vals

def get_temperatures(self) -> Sequence: # type: ignore
def get_temperatures(self) -> Sequence:
"""Get the current temperatures."""
self.request_read()
data = self.read()
return self.parse_data(data)
return self.parse_data(data) # type: ignore

Check warning on line 152 in finesse/hardware/plugins/temperature/senecak107.py

View check run for this annotation

Codecov / codecov/patch

finesse/hardware/plugins/temperature/senecak107.py#L152

Added line #L152 was not covered by tests

0 comments on commit 7899756

Please sign in to comment.