diff options
Diffstat (limited to 'dialoguer/__init__.py')
-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 6801d5e..6ef61c9 100644 --- a/dialoguer/__init__.py +++ b/dialoguer/__init__.py @@ -13,6 +13,8 @@ FORMAT = 'utf-8' server = socket.socket(socket.AF_INET, socket.SOCK_STREAM) server.bind(ADDR) +# could there be a defined sub-class that has all the sockets connection functions? +# then the dialogue class launches and connects and loops class Dialogue: def __init__(self, file_name): self.file_name = file_name |