Skip to content

Commit e1c035a

Browse files
authored
fix: move type: ignore to correct line in async_core.py
1 parent b83316c commit e1c035a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/w1thermsensor/async_core.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,8 +143,8 @@ async def get_temperatures(self, units: Iterable[Unit]) -> List[float]: # type:
143143
sensor_value = await self.get_temperature(Unit.DEGREES_C)
144144
return [Unit.get_conversion_function(Unit.DEGREES_C, unit)(sensor_value) for unit in units]
145145

146-
async def get_corrected_temperatures(
147-
self, # type: ignore
146+
async def get_corrected_temperatures( # type: ignore
147+
self,
148148
units: Iterable[Unit],
149149
) -> List[float]:
150150
"""Returns the temperatures in the specified units, corrected based on the calibration data

0 commit comments

Comments
 (0)