File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 77from client_init import debug_messages # Function for coloring debug messages | customization
88from client_init import color_messages # Function to color subsequent messages forever | customization
99
10+ colorama .init (autoreset = True )
11+
1012DEBUG = 1 # The presence of comments inthe output and more detailed work, set at your discretion to control the operation of the program
1113
1214print ('Available customizations:\n 1 - default (white/black)\n 2 - green\n 3 - red\n 4 - blue' )
Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ def color_messages(mode: int):
2828 print (colorama .Fore .BLUE )
2929
3030def main ():
31+ colorama .init (autoreset = True )
3132 host = sys .argv [1 ]
3233 port = int (sys .argv [2 ])
3334 DEBUG = int (sys .argv [3 ])
Original file line number Diff line number Diff line change 77from server_init import debug_messages # Function for coloring debug messages | customization
88from server_init import color_messages # Function to color subsequent messages forever | customization
99
10+ colorama .init (autoreset = True )
1011
1112DEBUG = 1 # The presence of comments inthe output and more detailed work, set at your discretion to control the operation of the program
1213
Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ def color_messages(mode: int):
2828 print (colorama .Fore .BLUE )
2929
3030def main ():
31+ colorama .init (autoreset = True )
3132 port = int (sys .argv [1 ])
3233 DEBUG = int (sys .argv [2 ])
3334 mode = int (sys .argv [3 ])
You can’t perform that action at this time.
0 commit comments