def supports_identification(self):
		if not self.dev:
			raise "Device not open"
		return pyf.fp_dev_supports_identification(self.dev) == 1
Esempio n. 2
0
 def supports_identification(self):
     """Return True if the device supports the identify_finger method."""
     if not self.dev:
         raise "Device not open"
     return pyf.fp_dev_supports_identification(self.dev) == 1
Esempio n. 3
0
	def supports_identification(self):
		"""Return True if the device supports the identify_finger method."""
		if not self.dev:
			raise "Device not open"
		return pyf.fp_dev_supports_identification(self.dev) == 1