Skip to content

Commit

Permalink
Revert conversion to classmethod because that was only for some deb…
Browse files Browse the repository at this point in the history
…ug logging
  • Loading branch information
BigRoy committed Oct 11, 2024
1 parent ff3c186 commit ff0ad97
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/ayon_maya/plugins/publish/extract_maya_scene_raw.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,8 @@ def process(self, instance):
self.log.debug("Extracted instance '%s' to: %s" % (instance.name,
path))

@classmethod
def _get_loaded_containers(cls, members):
@staticmethod
def _get_loaded_containers(members):
# type: (list[str]) -> list[str]
refs_to_include = {
cmds.referenceQuery(node, referenceNode=True)
Expand Down

0 comments on commit ff0ad97

Please sign in to comment.