Skip to content

Commit edcec23

Browse files
authored
Merge pull request #187 from buckbanzai/support-none-argvalue
Support ArgValue being None to send an empty message
2 parents 9f30c74 + 0a61787 commit edcec23

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)