14 lines
255 B
Python
14 lines
255 B
Python
from tkinter.tix import Tree
|
|
|
|
|
|
class ServerTranslator:
|
|
def __init__(self):
|
|
pass
|
|
|
|
def connection(self, details):
|
|
print(details.value)
|
|
if details.value == 1:
|
|
return True
|
|
else:
|
|
return False
|