summaryrefslogtreecommitdiffstats
path: root/Wrappers/Python
diff options
context:
space:
mode:
authorEdoardo Pasca <edo.paskino@gmail.com>2019-06-12 13:22:20 +0100
committerGitHub <noreply@github.com>2019-06-12 13:22:20 +0100
commitd7fa15c50ee9155ac24ecfa88ca74b111690532e (patch)
treebb722492602a6a0eb3a56d63967dfa6bda8bca40 /Wrappers/Python
parentb7fa76940a2a86635d6b528009f1cce9f1fcdd5e (diff)
parent0d2062ffad8cf1e0b3c8b5b8aeb800b71a32e69e (diff)
downloadframework-d7fa15c50ee9155ac24ecfa88ca74b111690532e.tar.gz
framework-d7fa15c50ee9155ac24ecfa88ca74b111690532e.tar.bz2
framework-d7fa15c50ee9155ac24ecfa88ca74b111690532e.tar.xz
framework-d7fa15c50ee9155ac24ecfa88ca74b111690532e.zip
Merge pull request #308 from vais-ral/fix_io_imports
fix imports in io
Diffstat (limited to 'Wrappers/Python')
-rw-r--r--Wrappers/Python/ccpi/io/NEXUSDataReader.py3
-rw-r--r--Wrappers/Python/ccpi/io/NEXUSDataWriter.py4
-rw-r--r--Wrappers/Python/ccpi/io/NikonDataReader.py1
3 files changed, 2 insertions, 6 deletions
diff --git a/Wrappers/Python/ccpi/io/NEXUSDataReader.py b/Wrappers/Python/ccpi/io/NEXUSDataReader.py
index a742dd5..cf67e27 100644
--- a/Wrappers/Python/ccpi/io/NEXUSDataReader.py
+++ b/Wrappers/Python/ccpi/io/NEXUSDataReader.py
@@ -9,7 +9,6 @@ Created on Wed Apr 3 10:30:25 2019
import numpy
import os
-import matplotlib.pyplot as plt
from ccpi.framework import AcquisitionData, AcquisitionGeometry, ImageData, ImageGeometry
@@ -141,4 +140,4 @@ image_data = reader.load_data()
print(image_data)
ig = reader.get_geometry()
print(ig)
-''' \ No newline at end of file
+'''
diff --git a/Wrappers/Python/ccpi/io/NEXUSDataWriter.py b/Wrappers/Python/ccpi/io/NEXUSDataWriter.py
index d35e86b..f780f79 100644
--- a/Wrappers/Python/ccpi/io/NEXUSDataWriter.py
+++ b/Wrappers/Python/ccpi/io/NEXUSDataWriter.py
@@ -9,9 +9,7 @@ Created on Thu May 2 10:11:20 2019
import numpy
import os
-import matplotlib.pyplot as plt
from ccpi.framework import AcquisitionData, AcquisitionGeometry, ImageData, ImageGeometry
-from NikonDataReader import NikonDataReader
import datetime
@@ -150,4 +148,4 @@ writer.set_up(file_name = '/home/evelina/test_nexus_im.nxs',
data_container = im)
writer.write_file()
-''' \ No newline at end of file
+'''
diff --git a/Wrappers/Python/ccpi/io/NikonDataReader.py b/Wrappers/Python/ccpi/io/NikonDataReader.py
index 6f02aa0..703b65b 100644
--- a/Wrappers/Python/ccpi/io/NikonDataReader.py
+++ b/Wrappers/Python/ccpi/io/NikonDataReader.py
@@ -8,7 +8,6 @@ Created on Wed Apr 3 10:30:25 2019
from ccpi.framework import AcquisitionData, AcquisitionGeometry
import numpy
-import matplotlib.pyplot as plt
import os