12 lines
264 B
Python
12 lines
264 B
Python
from ..VDM import VDM
|
|
|
|
class windows(object):
|
|
"""display all vdm into windows os"""
|
|
def __init__(self):
|
|
super(windows, self).__init__()
|
|
v = VDM()
|
|
|
|
def render(self):
|
|
lstAllVDM = self.v.get()
|
|
for i, vdm in enumerate(lstAllVDM):
|
|
print(str(i)+" : "+vdm) |