Skip to content

Commit

Permalink
Fix some docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
Manuel Marin committed Apr 19, 2021
1 parent 73506a9 commit e66afe5
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions spine_items/exporter/exporter_icon.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ def __init__(self, toolbox, icon, icon_color):
Args:
toolbox (ToolBoxUI): QMainWindow instance
icon (str): icon resource path
icon_color (QColor): Icon's color
"""
super().__init__(toolbox, icon, icon_color)
self.animation = ExporterAnimation(self, x_shift=-10)
Expand Down
1 change: 1 addition & 0 deletions spine_items/gdx_exporter/gdx_exporter_icon.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ def __init__(self, toolbox, icon, icon_color):
Args:
toolbox (ToolBoxUI): QMainWindow instance
icon (str): icon resource path
icon_color (QColor): Icon's color
"""
super().__init__(toolbox, icon, icon_color)
self.animation = ExporterAnimation(self, x_shift=-10)
Expand Down
1 change: 1 addition & 0 deletions spine_items/gimlet/gimlet_icon.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,6 @@ def __init__(self, toolbox, icon, icon_color):
Args:
toolbox (ToolBoxUI): QMainWindow instance
icon (str): Icon resource path
icon_color (QColor): Icon's color
"""
super().__init__(toolbox, icon, icon_color)
1 change: 1 addition & 0 deletions spine_items/importer/importer_icon.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ def __init__(self, toolbox, icon, icon_color):
Args:
toolbox (ToolBoxUI): QMainWindow instance
icon (str): icon resource path
icon_color (QColor): Icon's color
"""
super().__init__(toolbox, icon, icon_color)
self.animation = ImporterAnimation(self, x_shift=4)
Expand Down
1 change: 1 addition & 0 deletions spine_items/tool/tool_icon.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ def __init__(self, toolbox, icon, icon_color):
Args:
toolbox (ToolBoxUI): QMainWindow instance
icon (str): icon resource path
icon_color (QColor): Icon's color
"""
super().__init__(toolbox, icon, icon_color)
self.time_line = QTimeLine()
Expand Down

0 comments on commit e66afe5

Please sign in to comment.