6 lines
104 B
Python
6 lines
104 B
Python
|
class ProjectItem(object):
|
||
|
|
||
|
def __init__(self, filename):
|
||
|
self.filename = filename
|
||
|
|
||
|
|