diff options
author | TinWoodman92 <chrhodgden@gmail.com> | 2023-06-14 09:51:03 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-14 09:51:03 -0500 |
commit | 5132bdc5c926a33feff0551a3fc332d59f666889 (patch) | |
tree | 4628aeccd3898c8f68ff4a729268034a2b476a40 /dialoguer | |
parent | 49cadf8e84b3a8f9fd459588d825d1d89bbc8330 (diff) |
Update __init__.py
added comment
Diffstat (limited to 'dialoguer')
-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': |