File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -83,19 +83,6 @@ def base_hooks(self):
8383 """
8484 return self ._base_hooks
8585
86- @property
87- def summary_hook (self ) -> sgtk .Hook :
88- """Exposes the extensible ``:summary:hook`` instance from app settings.
89-
90- Used to fetch information related to summary overlay display content.
91- """
92- self ._summary_hook = getattr (
93- self ,
94- "_summary_hook" ,
95- self .create_hook_instance (self .get_setting ("summary" )["hook" ]),
96- )
97- return self ._summary_hook
98-
9986 @property
10087 def util (self ):
10188 """
@@ -127,6 +114,19 @@ def context_change_allowed(self):
127114 """
128115 return True
129116
117+ @property
118+ def summary_hook (self ) -> sgtk .Hook :
119+ """Exposes the extensible ``:summary:hook`` instance from app settings.
120+
121+ Used to fetch information related to summary overlay display content.
122+ """
123+ self ._summary_hook = getattr (
124+ self ,
125+ "_summary_hook" ,
126+ self .create_hook_instance (self .get_setting ("summary" )["hook" ]),
127+ )
128+ return self ._summary_hook
129+
130130 def create_publish_manager (self , publish_logger = None ):
131131 """
132132 Create and return a :class:`tk_multi_publish2.PublishManager` instance.
You can’t perform that action at this time.
0 commit comments