diff --git a/python/plugins/processing/tools/system.py b/python/plugins/processing/tools/system.py index cf14290ba0e..076d317cef8 100644 --- a/python/plugins/processing/tools/system.py +++ b/python/plugins/processing/tools/system.py @@ -70,23 +70,6 @@ def getTempFilename(ext=None): return filename -def getTempDirInTempFolder(): - """Returns a temporary directory, putting it into a temp folder. - """ - - path = QgsProcessingUtils.tempFolder() - path = os.path.join(path, uuid.uuid4().hex) - mkdir(path) - return path - - -def removeInvalidChars(string): - validChars = \ - 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789:.' - string = ''.join(c for c in string if c in validChars) - return string - - def getNumExportedLayers(): global numExported numExported += 1