Skip to content

Commit e564bba

Browse files
committed
Make this type annotation match the implementation
1 parent 79ddede commit e564bba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pythonosc/parsing/osc_types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ def get_uint64(dgram: bytes, start_index: int) -> Tuple[int, int]:
187187
raise ParseError('Could not parse datagram %s' % e)
188188

189189

190-
def get_timetag(dgram: bytes, start_index: int) -> Tuple[datetime, int]:
190+
def get_timetag(dgram: bytes, start_index: int) -> Tuple[Tuple[datetime, int], int]:
191191
"""Get a 64-bit OSC time tag from the datagram.
192192
193193
Args:

0 commit comments

Comments
 (0)