Adds EOF newline to files missing it.

Note: intentionally avoids files moved / already adjusted from #1919
This commit is contained in:
njessurun 2021-08-02 11:51:28 -04:00
parent a472f8c5de
commit ef99d3fbf6
16 changed files with 16 additions and 16 deletions

View File

@ -117,4 +117,4 @@ class Ui_Form(object):
self.searchFiles.setItemText(1, QCoreApplication.translate("Form", u"Content Search", None))
self.loadedFileLabel.setText("")
# retranslateUi
# retranslateUi

View File

@ -117,4 +117,4 @@ class Ui_Form(object):
self.searchFiles.setItemText(1, QCoreApplication.translate("Form", u"Content Search", None))
self.loadedFileLabel.setText("")
# retranslateUi
# retranslateUi

View File

@ -29,4 +29,4 @@ try:
import faulthandler
faulthandler.enable()
except ImportError:
pass
pass

View File

@ -1 +1 @@
from .pyoptic import *
from .pyoptic import *

View File

@ -1 +1 @@
from .chain import ChainSim
from .chain import ChainSim

View File

@ -1,3 +1,3 @@
# -*- coding: utf-8 -*-
from .Canvas import *
from .CanvasItem import *
from .CanvasItem import *

View File

@ -1 +1 @@
from .Console import ConsoleWidget
from .Console import ConsoleWidget

View File

@ -1,2 +1,2 @@
from .DockArea import DockArea
from .Dock import Dock
from .Dock import Dock

View File

@ -1,4 +1,4 @@
# -*- coding: utf-8 -*-
from .Flowchart import *
from .library import getNodeType, registerNodeType, getNodeTree
from .library import getNodeType, registerNodeType, getNodeTree

View File

@ -5,4 +5,4 @@ Includes ROI plotting over time and image normalization.
from .ImageView import ImageView
__all__ = ['ImageView']
__all__ = ['ImageView']

View File

@ -9,4 +9,4 @@ class OrderedDict(collections.OrderedDict):
DeprecationWarning,
stacklevel=2,
)
super().__init__(*args, **kwds)
super().__init__(*args, **kwds)

View File

@ -15,4 +15,4 @@ def test_screenInformation():
if __name__ == "__main__":
test_screenInformation()
test_screenInformation()

View File

@ -67,4 +67,4 @@ if Image.VERSION == '1.1.6':
return frombuffer(mode, size, obj, "raw", mode, 0, 1)
Image.fromarray=fromarray
Image.fromarray=fromarray

View File

@ -160,4 +160,4 @@ if __name__ == '__main__':
btn.success(message="Bueno!")
btn.clicked.connect(click)
win.setCentralWidget(btn)
win.show()
win.show()

View File

@ -98,4 +98,4 @@ if __name__ == '__main__':
l.addWidget(l3, 2, 2)
l.addWidget(l4, 3, 3)
win.setCentralWidget(w)
win.show()
win.show()

View File

@ -60,4 +60,4 @@ projections = [
def test_Point_projection(p1_arg, p2_arg, projection):
p1 = pg.Point(p1_arg)
p2 = pg.Point(p2_arg)
p1.proj(p2) == projection
p1.proj(p2) == projection