def tabmode7_view(): # разное x=tkright+5 y=tktop+5 imfile=dir_img+r'excel-logo.gif' el=PhotoImage(imfile) bw=120 tab7_button_openlogfile=Button(tab7, text='Открыть журнальный файл', command=open_log_file, width=bw) tab7_button_openlogfile.config(font=ffont, cursor='hand2') tab7_button_openlogfile.place(x=x, y=y) y+=70 tab7_button_exportrails=Button(tab7, image=el, text='Экспорт таблицы lines в CSV', command=export_lines_to_csv, width=bw, height=48) tab7_button_exportrails.config(font=ffont, cursor='hand2') tab7_button_exportrails.place(x=x, y=y) y+=70 tab7_button_exportdefects=Button(tab7, image=el, text='Экспорт таблицы defects в CSV', command=export_defects_to_csv, width=bw, height=48) tab7_button_exportdefects.config(font=ffont, cursor='hand2') tab7_button_exportdefects.place(x=x, y=y)
ЧЯДНТ?