Skip to content

Commit 6f3323b

Browse files
committed
Support ArgValue being None to send an empty message
1 parent 551d5ed commit 6f3323b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pythonosc/osc_message_builder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from pythonosc import osc_message
66
from pythonosc.parsing import osc_types
77

8-
ArgValue = Union[str, bytes, bool, int, float, osc_types.MidiPacket, list]
8+
ArgValue = Union[str, bytes, bool, int, float, osc_types.MidiPacket, list, None]
99

1010

1111
class BuildError(Exception):

0 commit comments

Comments
 (0)