Skip to content

Commit 7794584

Browse files
authored
nit
1 parent cda4209 commit 7794584

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

picoscope/ps4000a.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ def getTimeBaseNum(self, sampleTimeS):
320320
timebase = math.floor((sampleTimeS * 5.0E7) + 2)
321321

322322
else: # The original case from non "A" series
323-
warnings.warn("The model PS4000a you are using may not be"
323+
warnings.warn("The model PS4000a you are using may not be "
324324
"fully supported", stacklevel=2)
325325
maxSampleTime = (((2 ** 32 - 1) - 4) / 2e7)
326326

@@ -349,7 +349,7 @@ def getTimestepFromTimebase(self, timebase):
349349
dt = (timebase - 2) / 5.0E7
350350

351351
else: # The original case from non "A" series
352-
warnings.warn("The model PS4000a you are using may not be"
352+
warnings.warn("The model PS4000a you are using may not be "
353353
"fully supported", stacklevel=2)
354354
if timebase < 3:
355355
dt = 2. ** timebase / 8e7

0 commit comments

Comments
 (0)