# -*- coding: utf-8 -*- import tkinter as tk from Interface import Interface class InterfaceClient(Interface): def __init__(self): Interface.__init__(self, "client") # à compléter It = InterfaceClient() It.mainloop()