diff options
-rw-r--r-- | dialoguer/__init__.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/dialoguer/__init__.py b/dialoguer/__init__.py index 26068df..6801d5e 100644 --- a/dialoguer/__init__.py +++ b/dialoguer/__init__.py @@ -63,6 +63,8 @@ class Dialogue: bin_data = binary_conversion.convert_to_binary(bin_data) self.conn.send(bin_data) + # Could add an optional boolean expect_data_type argument that receives data type as string. + # should there be an expected data type arg that specifies a known data type? def recv(self): data = self.conn.recv(HEADER) while data == b'\x00': |