diff options
author | TinWoodman92 <chrhodgden@gmail.com> | 2023-06-14 09:34:20 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-14 09:34:20 -0500 |
commit | 711b2237f13c0fd28586fe484c3b3097da8e657e (patch) | |
tree | 7b2f3d6fc1898ad307e93832a4ccd1c13c52b337 /dialoguer | |
parent | b3905c2b0f2c20d65567f9286c4aa59f4cfce852 (diff) |
Update __init__.py
added comment
Diffstat (limited to 'dialoguer')
-rw-r--r-- | dialoguer/__init__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/dialoguer/__init__.py b/dialoguer/__init__.py index 47cd5e6..ef9bfa9 100644 --- a/dialoguer/__init__.py +++ b/dialoguer/__init__.py @@ -55,6 +55,7 @@ class Dialogue: else: self._open.start() def send(self, data): + # I should probably put this reversal in the convert_to_binary method. bin_data = reversed(data) bin_data = "".join(bin_data) bin_data = binary_conversion.convert_to_binary(bin_data) |