Skip to content

Commit

Permalink
Added some comments
Browse files Browse the repository at this point in the history
  • Loading branch information
anaselli committed Jan 2, 2017
1 parent eaf84ab commit 7f94340
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion dnfdragora/dialogs.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@
from gettext import gettext as _

class TransactionResult:
'''
TransactionResult is a dialog that shows the transacion dependencies before
running the transaction.
'''

def __init__(self, parent):
self.parent = parent
Expand Down Expand Up @@ -114,10 +118,13 @@ def run(self, pkglist):


class AboutDialog:
'''
Create an about dialog
'''

def __init__(self, parent):
'''
Create an about dialog
Constructor
@param parent: main parent dialog
'''
Expand Down

0 comments on commit 7f94340

Please sign in to comment.