Skip to content
This repository was archived by the owner on Aug 28, 2020. It is now read-only.

Commit c0374a4

Browse files
committed
model for projects
1 parent 3bceb70 commit c0374a4

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

pugdebug/models/projects.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
__author__ = "robertbasic"
1111

1212
from PyQt5.QtCore import QCoreApplication, QSettings
13+
from PyQt5.QtGui import QStandardItemModel
1314

1415

1516
class PugdebugProject(QSettings):
@@ -32,3 +33,9 @@ def __init__(self, project_name):
3233

3334
def get_project_name(self):
3435
return self.project_name
36+
37+
38+
class PugdebugProjects(QStandardItemModel):
39+
40+
def __init__(self, parent):
41+
super(PugdebugProjects, self).__init__(parent)

0 commit comments

Comments
 (0)