Skip to content

Commit ccacb44

Browse files
committed
Remove unused imports of Pyro4
1 parent e059206 commit ccacb44

File tree

7 files changed

+3
-12
lines changed

7 files changed

+3
-12
lines changed

microscope/cameras/atmcd.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@
3636
from ctypes import c_ubyte, c_short, c_float, c_double, c_char, c_char_p
3737
from ctypes import c_void_p
3838
from numpy.ctypeslib import ndpointer
39-
import Pyro4
4039

4140
# Andor docs use Windows datatypes in call signatures. These may not be available on
4241
# other platforms.

microscope/filterwheels/thorlabs.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,9 @@
1717
# along with this program. If not, see <http://www.gnu.org/licenses/>.
1818

1919
import io
20+
import time
2021

21-
import Pyro4
2222
import serial
23-
import time
2423

2524
from microscope.devices import FilterWheelBase
2625

microscope/lasers/cobolt.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,8 @@
1616
#
1717
# You should have received a copy of the GNU General Public License
1818
# along with this program. If not, see <http://www.gnu.org/licenses/>.
19-
import serial
2019

21-
import Pyro4
20+
import serial
2221

2322
from microscope import devices
2423

microscope/lasers/deepstar.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,9 @@
1919

2020
import serial
2121

22-
import Pyro4
23-
2422
from microscope import devices
2523

24+
2625
class DeepstarLaser(devices.SerialDeviceMixIn, devices.LaserDevice):
2726
def __init__(self, com, baud=9600, timeout=2.0, **kwargs):
2827
super().__init__(**kwargs)

microscope/lasers/sapphire.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@
1919
# along with this program. If not, see <http://www.gnu.org/licenses/>.
2020
import serial
2121

22-
import Pyro4
23-
2422
from microscope import devices
2523

2624

microscope/mirror/alpao.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
import ctypes
2020
import warnings
2121

22-
import Pyro4
2322
import numpy
2423

2524
from microscope.devices import DeformableMirror

microscope/mirror/bmc.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@
2323
import os
2424
import warnings
2525

26-
import Pyro4
27-
2826
from microscope.devices import DeformableMirror
2927

3028
import microscope._wrappers.BMC as BMC

0 commit comments

Comments
 (0)