Merge pull request #1942 from ntjess/add-newlines
Adds EOF newline to files missing it
This commit is contained in:
commit
d0961cc320
@ -117,4 +117,4 @@ class Ui_Form(object):
|
|||||||
self.searchFiles.setItemText(1, QCoreApplication.translate("Form", u"Content Search", None))
|
self.searchFiles.setItemText(1, QCoreApplication.translate("Form", u"Content Search", None))
|
||||||
|
|
||||||
self.loadedFileLabel.setText("")
|
self.loadedFileLabel.setText("")
|
||||||
# retranslateUi
|
# retranslateUi
|
||||||
|
@ -117,4 +117,4 @@ class Ui_Form(object):
|
|||||||
self.searchFiles.setItemText(1, QCoreApplication.translate("Form", u"Content Search", None))
|
self.searchFiles.setItemText(1, QCoreApplication.translate("Form", u"Content Search", None))
|
||||||
|
|
||||||
self.loadedFileLabel.setText("")
|
self.loadedFileLabel.setText("")
|
||||||
# retranslateUi
|
# retranslateUi
|
||||||
|
@ -29,4 +29,4 @@ try:
|
|||||||
import faulthandler
|
import faulthandler
|
||||||
faulthandler.enable()
|
faulthandler.enable()
|
||||||
except ImportError:
|
except ImportError:
|
||||||
pass
|
pass
|
||||||
|
@ -1 +1 @@
|
|||||||
from .pyoptic import *
|
from .pyoptic import *
|
||||||
|
@ -1 +1 @@
|
|||||||
from .chain import ChainSim
|
from .chain import ChainSim
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
from .Canvas import *
|
from .Canvas import *
|
||||||
from .CanvasItem import *
|
from .CanvasItem import *
|
||||||
|
@ -1 +1 @@
|
|||||||
from .Console import ConsoleWidget
|
from .Console import ConsoleWidget
|
||||||
|
@ -1,2 +1,2 @@
|
|||||||
from .DockArea import DockArea
|
from .DockArea import DockArea
|
||||||
from .Dock import Dock
|
from .Dock import Dock
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
from .Flowchart import *
|
from .Flowchart import *
|
||||||
|
|
||||||
from .library import getNodeType, registerNodeType, getNodeTree
|
from .library import getNodeType, registerNodeType, getNodeTree
|
||||||
|
@ -5,4 +5,4 @@ Includes ROI plotting over time and image normalization.
|
|||||||
|
|
||||||
from .ImageView import ImageView
|
from .ImageView import ImageView
|
||||||
|
|
||||||
__all__ = ['ImageView']
|
__all__ = ['ImageView']
|
||||||
|
@ -9,4 +9,4 @@ class OrderedDict(collections.OrderedDict):
|
|||||||
DeprecationWarning,
|
DeprecationWarning,
|
||||||
stacklevel=2,
|
stacklevel=2,
|
||||||
)
|
)
|
||||||
super().__init__(*args, **kwds)
|
super().__init__(*args, **kwds)
|
||||||
|
@ -15,4 +15,4 @@ def test_screenInformation():
|
|||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
test_screenInformation()
|
test_screenInformation()
|
||||||
|
@ -67,4 +67,4 @@ if Image.VERSION == '1.1.6':
|
|||||||
|
|
||||||
return frombuffer(mode, size, obj, "raw", mode, 0, 1)
|
return frombuffer(mode, size, obj, "raw", mode, 0, 1)
|
||||||
|
|
||||||
Image.fromarray=fromarray
|
Image.fromarray=fromarray
|
||||||
|
@ -160,4 +160,4 @@ if __name__ == '__main__':
|
|||||||
btn.success(message="Bueno!")
|
btn.success(message="Bueno!")
|
||||||
btn.clicked.connect(click)
|
btn.clicked.connect(click)
|
||||||
win.setCentralWidget(btn)
|
win.setCentralWidget(btn)
|
||||||
win.show()
|
win.show()
|
||||||
|
@ -98,4 +98,4 @@ if __name__ == '__main__':
|
|||||||
l.addWidget(l3, 2, 2)
|
l.addWidget(l3, 2, 2)
|
||||||
l.addWidget(l4, 3, 3)
|
l.addWidget(l4, 3, 3)
|
||||||
win.setCentralWidget(w)
|
win.setCentralWidget(w)
|
||||||
win.show()
|
win.show()
|
||||||
|
@ -60,4 +60,4 @@ projections = [
|
|||||||
def test_Point_projection(p1_arg, p2_arg, projection):
|
def test_Point_projection(p1_arg, p2_arg, projection):
|
||||||
p1 = pg.Point(p1_arg)
|
p1 = pg.Point(p1_arg)
|
||||||
p2 = pg.Point(p2_arg)
|
p2 = pg.Point(p2_arg)
|
||||||
p1.proj(p2) == projection
|
p1.proj(p2) == projection
|
||||||
|
Loading…
Reference in New Issue
Block a user