Skip to content

Commit

Permalink
Fix whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonah Shapiro committed Oct 9, 2020
1 parent 7451ee3 commit 3bd6701
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion picoscope/ps2000.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ def __init__(self, serialNumber=None, connect=True):
else:
from ctypes import windll
from ctypes.util import find_library
self.lib = windll.LoadLibrary(
self.lib = windll.LoadLibrary(
find_library(str(self.LIBNAME + ".dll"))
)

Expand Down
2 changes: 1 addition & 1 deletion picoscope/ps2000a.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ def __init__(self, serialNumber=None, connect=True):
else:
from ctypes import windll
from ctypes.util import find_library
self.lib = windll.LoadLibrary(
self.lib = windll.LoadLibrary(
find_library(str(self.LIBNAME + ".dll"))
)

Expand Down
2 changes: 1 addition & 1 deletion picoscope/ps3000.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ def __init__(self, serialNumber=None, connect=True):
else:
from ctypes import windll
from ctypes.util import find_library
self.lib = windll.LoadLibrary(
self.lib = windll.LoadLibrary(
find_library(str(self.LIBNAME + ".dll"))
)

Expand Down
2 changes: 1 addition & 1 deletion picoscope/ps3000a.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ def __init__(self, serialNumber=None, connect=True):
else:
from ctypes import windll
from ctypes.util import find_library
self.lib = windll.LoadLibrary(
self.lib = windll.LoadLibrary(
find_library(str(self.LIBNAME + ".dll"))
)

Expand Down
2 changes: 1 addition & 1 deletion picoscope/ps4000.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ def __init__(self, serialNumber=None, connect=True):
else:
from ctypes import windll
from ctypes.util import find_library
self.lib = windll.LoadLibrary(
self.lib = windll.LoadLibrary(
find_library(str(self.LIBNAME + ".dll"))
)

Expand Down
2 changes: 1 addition & 1 deletion picoscope/ps4000a.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ def __init__(self, serialNumber=None, connect=True):
else:
from ctypes import windll
from ctypes.util import find_library
self.lib = windll.LoadLibrary(
self.lib = windll.LoadLibrary(
find_library(str(self.LIBNAME + ".dll"))
)

Expand Down
2 changes: 1 addition & 1 deletion picoscope/ps5000.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ def __init__(self, serialNumber=None, connect=True):
else:
from ctypes import windll
from ctypes.util import find_library
self.lib = windll.LoadLibrary(
self.lib = windll.LoadLibrary(
find_library(str(self.LIBNAME + ".dll"))
)

Expand Down
2 changes: 1 addition & 1 deletion picoscope/ps5000a.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ def __init__(self, serialNumber=None, connect=True):
else:
from ctypes import windll
from ctypes.util import find_library
self.lib = windll.LoadLibrary(
self.lib = windll.LoadLibrary(
find_library(str(self.LIBNAME + ".dll"))
)

Expand Down
6 changes: 3 additions & 3 deletions picoscope/ps6000.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,10 +148,10 @@ def __init__(self, serialNumber=None, connect=True):
else:
from ctypes import windll
from ctypes.util import find_library
self.lib = windll.LoadLibrary(
find_library(str(self.LIBNAME + ".dll"))
self.lib = windll.LoadLibrary(
find_library(str(self.LIBNAME + ".dll"))
)

super(PS6000, self).__init__(serialNumber, connect)

def _lowLevelOpenUnit(self, sn):
Expand Down

0 comments on commit 3bd6701

Please sign in to comment.