(*_)
| 1135 | addace(i, acltree, ace) |
| 1136 | |
| 1137 | def edit(*_): |
| 1138 | try: |
| 1139 | selected = int(acltree.selection()[0]) |
| 1140 | ace = aclobj.Aces[selected] |
| 1141 | except IndexError: |
| 1142 | return |
| 1143 | acegui(ace) |
| 1144 | # Update |
| 1145 | acltree.delete(selected) |
| 1146 | addace(selected, acltree, ace, pos=selected) |
| 1147 | |
| 1148 | btnfrm = ttk.Frame(aclfrm) |
| 1149 | btnfrm.grid_columnconfigure(0, weight=1) |
nothing calls this directly
no test coverage detected