mirror of
https://github.com/Kilian/Trimage.git
synced 2026-01-26 01:58:41 -05:00
Remove some extra spaces
This commit is contained in:
parent
c040b63595
commit
9ea961e87c
1 changed files with 0 additions and 6 deletions
|
|
@ -22,7 +22,6 @@ VERSION = "1.0.5"
|
||||||
|
|
||||||
|
|
||||||
class StartQt(QMainWindow):
|
class StartQt(QMainWindow):
|
||||||
|
|
||||||
def __init__(self, parent=None):
|
def __init__(self, parent=None):
|
||||||
QWidget.__init__(self, parent)
|
QWidget.__init__(self, parent)
|
||||||
self.ui = Ui_trimage()
|
self.ui = Ui_trimage()
|
||||||
|
|
@ -261,7 +260,6 @@ class StartQt(QMainWindow):
|
||||||
|
|
||||||
|
|
||||||
class TriTableModel(QAbstractTableModel):
|
class TriTableModel(QAbstractTableModel):
|
||||||
|
|
||||||
def __init__(self, parent, imagelist, header, *args):
|
def __init__(self, parent, imagelist, header, *args):
|
||||||
"""
|
"""
|
||||||
@param parent Qt parent object.
|
@param parent Qt parent object.
|
||||||
|
|
@ -303,7 +301,6 @@ class TriTableModel(QAbstractTableModel):
|
||||||
|
|
||||||
|
|
||||||
class ImageRow:
|
class ImageRow:
|
||||||
|
|
||||||
def __init__(self, image, waitingIcon=None):
|
def __init__(self, image, waitingIcon=None):
|
||||||
"""Build the information visible in the table image row."""
|
"""Build the information visible in the table image row."""
|
||||||
self.image = image
|
self.image = image
|
||||||
|
|
@ -344,7 +341,6 @@ class ImageRow:
|
||||||
|
|
||||||
|
|
||||||
class Image:
|
class Image:
|
||||||
|
|
||||||
def __init__(self, fullpath):
|
def __init__(self, fullpath):
|
||||||
"""Gather image information."""
|
"""Gather image information."""
|
||||||
self.valid = False
|
self.valid = False
|
||||||
|
|
@ -405,7 +401,6 @@ class Image:
|
||||||
|
|
||||||
|
|
||||||
class Worker(QThread):
|
class Worker(QThread):
|
||||||
|
|
||||||
update_ui_signal = pyqtSignal()
|
update_ui_signal = pyqtSignal()
|
||||||
|
|
||||||
def __init__(self, parent=None):
|
def __init__(self, parent=None):
|
||||||
|
|
@ -448,7 +443,6 @@ class Worker(QThread):
|
||||||
|
|
||||||
|
|
||||||
class Systray(QWidget):
|
class Systray(QWidget):
|
||||||
|
|
||||||
def __init__(self, parent):
|
def __init__(self, parent):
|
||||||
QWidget.__init__(self)
|
QWidget.__init__(self)
|
||||||
self.parent = parent
|
self.parent = parent
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue