PySigmaKoki 2.1.4__tar.gz → 2.1.6__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: PySigmaKoki
3
- Version: 2.1.4
3
+ Version: 2.1.6
4
4
  Summary: Python Interface for Instruments by Sigma Koki
5
5
  Author-email: Akira Okumura <oxon@mac.com>
6
6
  License: BSD License
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: PySigmaKoki
3
- Version: 2.1.4
3
+ Version: 2.1.6
4
4
  Summary: Python Interface for Instruments by Sigma Koki
5
5
  Author-email: Akira Okumura <oxon@mac.com>
6
6
  License: BSD License
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "PySigmaKoki"
7
- version = "2.1.4"
7
+ version = "2.1.6"
8
8
  description = "Python Interface for Instruments by Sigma Koki"
9
9
  authors = [
10
10
  { name = "Akira Okumura", email = "oxon@mac.com" }
@@ -230,13 +230,13 @@ class BaseStageController(object):
230
230
  """
231
231
  Sleep up to timeout_in_sec until the ACK3 state becomes ready.
232
232
  """
233
- for i in range(timeout_in_sec*10):
233
+ for i in range(timeout_in_sec*10):
234
234
  ack3 = self.getACK3()
235
235
  if ack3 == 'R': # ready
236
236
  break
237
237
  elif ack3 == 'B': # busy
238
238
  time.sleep(0.1)
239
- elif: # unknown state
239
+ else: # unknown state
240
240
  time.sleep(0.1) # wait anyway
241
241
 
242
242
  def getVersion(self):
File without changes
File without changes