mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-11-02 20:52:20 -07:00
Remove trailing whitespace from Python files
This commit is contained in:
parent
1e33360c35
commit
89f0970a88
157 changed files with 562 additions and 562 deletions
|
|
@ -6,13 +6,13 @@ from UM.PluginObject import PluginObject
|
|||
|
||||
class ProfileWriter(PluginObject):
|
||||
"""Base class for profile writer plugins.
|
||||
|
||||
|
||||
This class defines a write() function to write profiles to files with.
|
||||
"""
|
||||
|
||||
def __init__(self):
|
||||
"""Initialises the profile writer.
|
||||
|
||||
|
||||
This currently doesn't do anything since the writer is basically static.
|
||||
"""
|
||||
|
||||
|
|
@ -20,9 +20,9 @@ class ProfileWriter(PluginObject):
|
|||
|
||||
def write(self, path, profiles):
|
||||
"""Writes a profile to the specified file path.
|
||||
|
||||
|
||||
The profile writer may write its own file format to the specified file.
|
||||
|
||||
|
||||
:param path: :type{string} The file to output to.
|
||||
:param profiles: :type{Profile} or :type{List} The profile(s) to write to the file.
|
||||
:return: True if the writing was successful, or False if it wasn't.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue