src/eric7/MicroPython/Devices/DeviceBase.py

branch
eric7
changeset 9944
011ae0edbcff
parent 9928
f98f0c28c1eb
child 9957
0457d754fc9a
equal deleted inserted replaced
9943:02a40e8bd135 9944:011ae0edbcff
338 return ( 338 return (
339 Preferences.getMicroPython("MpyWorkspace") 339 Preferences.getMicroPython("MpyWorkspace")
340 or Preferences.getMultiProject("Workspace") 340 or Preferences.getMultiProject("Workspace")
341 or os.path.expanduser("~") 341 or os.path.expanduser("~")
342 ) 342 )
343
344 def setWorkspace(self, workspacePath):
345 """
346 Public method to set the device workspace directory.
347
348 @param workspacePath directory to be used for saving files
349 @type str
350 """
351 # nothing to do here
352 pass
343 353
344 def selectDeviceDirectory(self, deviceDirectories): 354 def selectDeviceDirectory(self, deviceDirectories):
345 """ 355 """
346 Public method to select the device directory from a list of detected 356 Public method to select the device directory from a list of detected
347 ones. 357 ones.

eric ide

mercurial