eric6/MicroPython/MicroPythonDevices.py

changeset 7161
728018c32b09
parent 7145
ceb3e8b242c1
child 7229
53054eb5b15a
equal deleted inserted replaced
7159:85a9d6a753bd 7161:728018c32b09
335 335
336 @return flag indicating support for time commands 336 @return flag indicating support for time commands
337 @rtype bool 337 @rtype bool
338 """ 338 """
339 return True 339 return True
340
341 def hasDocumentationUrl(self):
342 """
343 Public method to check, if the device has a configured documentation
344 URL.
345
346 @return flag indicating a configured documentation URL
347 @rtype bool
348 """
349 return bool(self.getDocumentationUrl())
350
351 def getDocumentationUrl(self):
352 """
353 Public method to get the device documentation URL.
354
355 @return documentation URL of the device
356 @rtype str
357 """
358 return ""

eric ide

mercurial