eric6/MicroPython/CircuitPythonDevices.py

branch
micropython
changeset 7129
3cc19aec959a
parent 7125
2028553ee58c
child 7132
c4682cfcd160
equal deleted inserted replaced
7128:0d72ed127335 7129:3cc19aec959a
116 File Manager and a reason why it cannot. 116 File Manager and a reason why it cannot.
117 @rtype tuple of (bool, str) 117 @rtype tuple of (bool, str)
118 """ 118 """
119 return True, "" 119 return True, ""
120 120
121 def supportsLocalFileAccess(self):
122 """
123 Public method to indicate file access via a local directory.
124
125 @return flag indicating file access via local directory
126 @type bool
127 """
128 return True
129
121 def getWorkspace(self): 130 def getWorkspace(self):
122 """ 131 """
123 Public method to get the workspace directory. 132 Public method to get the workspace directory.
124 133
125 @return workspace directory used for saving files 134 @return workspace directory used for saving files

eric ide

mercurial