refactor: add default value to string_control

This commit is contained in:
Francisco 2023-04-29 16:14:28 -05:00
parent 917606138c
commit d2bc12f51b
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@ import socket
class ClientJorobany:
coding = 'utf-8'
def __init__(self, host, port, string_control):
def __init__(self, host, port, string_control='\n'):
self.host = host
self.port = port
self.string_control = string_control