mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-19 19:09:09 +08:00
Add some documentation
CURA-2544
This commit is contained in:
parent
1fd7c2793c
commit
15a870c050
@ -66,6 +66,7 @@ class RemovableDriveOutputDevice(OutputDevice):
|
||||
|
||||
try:
|
||||
Logger.log("d", "Writing to %s", file_name)
|
||||
# Using buffering greatly reduces the write time for many lines of gcode
|
||||
self._stream = open(file_name, "wt", buffering = 1)
|
||||
job = WriteMeshJob(writer, self._stream, node, MeshWriter.OutputMode.TextMode)
|
||||
job.setFileName(file_name)
|
||||
@ -94,6 +95,7 @@ class RemovableDriveOutputDevice(OutputDevice):
|
||||
|
||||
def _onFinished(self, job):
|
||||
if self._stream:
|
||||
# Explicitly closing the stream flushes the write-buffer
|
||||
self._stream.close()
|
||||
self._stream = None
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user