Skip to content

Commit 0284d37

Browse files
formatting
1 parent 621610f commit 0284d37

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

adafruit_rockblock.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ def signal_quality(self) -> int:
223223
return None
224224

225225
@property
226-
def revision(self) -> Tuple[ Optional[str], ...]:
226+
def revision(self) -> Tuple[Optional[str], ...]:
227227
"""Modem's internal component firmware revisions.
228228
229229
For example: Call Processor Version, Modem DSP Version, DBB Version (ASIC),
@@ -272,7 +272,7 @@ def ring_alert(self, value: Union[int, bool]) -> Optional[bool]:
272272
)
273273

274274
@property
275-
def ring_indication(self) -> Tuple[ Optional[str], ...]:
275+
def ring_indication(self) -> Tuple[Optional[str], ...]:
276276
"""The ring indication status.
277277
278278
Returns the reason for the most recent assertion of the Ring Indicate signal.
@@ -300,7 +300,9 @@ def ring_indication(self) -> Tuple[ Optional[str], ...]:
300300
return (None,) * 2
301301

302302
@property
303-
def geolocation(self) -> Union[Tuple[int, int, int, time_struct], Tuple[None, None, None, None]]:
303+
def geolocation(
304+
self,
305+
) -> Union[Tuple[int, int, int, time_struct], Tuple[None, None, None, None]]:
304306
"""Most recent geolocation of the modem as measured by the Iridium constellation
305307
including a timestamp of when geolocation measurement was made.
306308

0 commit comments

Comments
 (0)