Skip to content

Commit

Permalink
Merge 412352e into 2dec713
Browse files Browse the repository at this point in the history
  • Loading branch information
Xevib committed Sep 19, 2018
2 parents 2dec713 + 412352e commit 4881c4f
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions Koo/Common/Common.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def nodeAttributes(node):


def sendEMail(to, subject, body):
# Import smtplib for the actual sending function
# Import smtplib for the actual sending function
import smtplib

# Import the email modules we'll need
Expand All @@ -119,7 +119,6 @@ def sendEMail(to, subject, body):
(SelectionDialogUi, SelectionDialogBase) = loadUiType(uiPath('win_selection.ui'))



class SelectionDialog(QDialog, SelectionDialogUi):
"""
The SelectionDialog class shows a dialog prompting the user to choose
Expand Down Expand Up @@ -148,8 +147,6 @@ def selected(self):
self.result = (str(item.text()), item.value)
self.accept()

# @brief


def selection(title, values, alwaysask=False):
"""
Expand Down Expand Up @@ -307,8 +304,6 @@ def error(title, message, details=''):
(LostConnectionDialogUi, LostConnectionDialogBase) = loadUiType(
uiPath('lostconnection.ui'))

# @brief


class LostConnectionDialog(QDialog, LostConnectionDialogUi):
"""
Expand Down Expand Up @@ -370,7 +365,6 @@ def lostConnectionError(count):
(ProgressDialogUi, ProgressDialogBase) = loadUiType(uiPath('progress.ui'))



class ProgressDialog(QDialog, ProgressDialogUi):
"""
The ProgressDialog class shows a progress bar moving left and right until
Expand Down

0 comments on commit 4881c4f

Please sign in to comment.