From 45d4f241f1b3a8d92fbacfded7dd45c51032e2f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Haberth=C3=BCr?= Date: Wed, 20 Jan 2016 15:51:48 +0100 Subject: [PATCH] Conform to `pep8 --ignore=E501` --- Python/HandleDMPFiles.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Python/HandleDMPFiles.py b/Python/HandleDMPFiles.py index b513092..17ef315 100644 --- a/Python/HandleDMPFiles.py +++ b/Python/HandleDMPFiles.py @@ -24,7 +24,7 @@ def readDMP(filename): # 3 unsigned 16bit integers specifying the image dimensions, followed by a # stream of 32-bit floats in little-endian byte order. It's first two # values are the image size. - # Load Header. + # Load Header. header = numpy.fromfile(dmpfile, numpy.int16, 3) imageSize = (header[1], header[0]) # Load the whole file and reshape to the size given in the header @@ -71,5 +71,5 @@ if __name__ == "__main__": plt.title('Some random image') plt.show() - + print 'Now open randomimage.DMP in Fiji!'