MCPcopy Create free account
hub / github.com/dtmilano/AndroidViewClient / __init__

Method __init__

src/com/dtmilano/android/culebron.py:2051–2056  ·  view source on GitHub ↗
(self, parent)

Source from the content-addressed store, hash-verified

2049 VIEW_DETAILS = "View Details:\n"
2050
2051 def __init__(self, parent):
2052 tkinter.Frame.__init__(self, parent)
2053 self.label = tkinter.Label(self, bd=1, width=30, wraplength=200, justify=tkinter.LEFT, anchor=tkinter.NW)
2054 self.label.configure(text=self.VIEW_DETAILS)
2055 self.label.configure(bg="white")
2056 self.label.grid(row=3, column=1, rowspan=1)
2057
2058 def set(self, view):
2059 self.label.configure(text=self.VIEW_DETAILS + view.__str__())

Callers

nothing calls this directly

Calls 2

gridMethod · 0.80
__init__Method · 0.45

Tested by

no test coverage detected