Skip to content

Commit

Permalink
Fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
captainhammy committed Dec 20, 2017
1 parent a903d0b commit b816201
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
9 changes: 7 additions & 2 deletions python/ht/events/block.py
@@ -1,5 +1,10 @@
"""This module contains the base Houdini event class."""
"""This module contains the Houdini block event class."""

# =============================================================================
# IMPORTS
# =============================================================================

# Houdini Toolbox Imports
from ht.events.stats import EventBlockStats

# =============================================================================
Expand All @@ -8,7 +13,7 @@


class HoudiniEventBlock(object):
"""A block of events to run at the same time."""
"""A block of event methods to run at the same time."""

_EVENT_NAME = None

Expand Down
1 change: 1 addition & 0 deletions python/ht/events/events/scene_load.py
Expand Up @@ -35,3 +35,4 @@ def clearSessionSettings(self, scriptargs):
"""Clear out potentially annoying/bad settings."""
# Remove an icon cache directory variable if it exists.
hou.hscript("set -u HOUDINI_ICON_CACHE_DIR")

8 changes: 6 additions & 2 deletions python/ht/events/group.py
@@ -1,12 +1,16 @@
"""This module contains the base Houdini event class."""
"""This module contains the Houdini event group class."""

# =============================================================================
# CLASSES
# =============================================================================


class HoudiniEventGroup(object):
"""The base Houdini event class."""
"""The Houdini event group class.
This class acts as a way to associate multiple event methods together.
"""

def __init__(self):
self._data = {}
Expand Down

0 comments on commit b816201

Please sign in to comment.