Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cosmetics (fix docstring triple quotes) #688

Merged
merged 4 commits into from
Jun 24, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def _get_item(self, placeholder_item):
return None, None

def _collect_scene_placeholders(self):
"""" Cache placeholder data to shared data.
""" Cache placeholder data to shared data.
BigRoy marked this conversation as resolved.
Show resolved Hide resolved
Returns:
(list) of dicts
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def process(self, instance):
instance.data["representations"].append(representation)

def _fix_output_path(self, filepath):
""""Workaround to return correct filepath.
"""Workaround to return correct filepath.

To workaround this we just glob.glob() for any file extensions and
assume the latest modified file is the correct file and return it.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -548,7 +548,7 @@ def PrintField(self, field, value):
self.out.write(' ' if self.as_one_line else '\n')

def _PrintShortRepeatedPrimitivesValue(self, field, value):
""""Prints short repeated primitives value."""
"""Prints short repeated primitives value."""
BigRoy marked this conversation as resolved.
Show resolved Hide resolved
# Note: this is called only when value has at least one element.
self._PrintFieldName(field)
self.out.write(' [')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -548,7 +548,7 @@ def PrintField(self, field, value):
self.out.write(' ' if self.as_one_line else '\n')

def _PrintShortRepeatedPrimitivesValue(self, field, value):
""""Prints short repeated primitives value."""
"""Prints short repeated primitives value."""
BigRoy marked this conversation as resolved.
Show resolved Hide resolved
# Note: this is called only when value has at least one element.
self._PrintFieldName(field)
self.out.write(' [')
Expand Down