MCPcopy Create free account
hub / github.com/apache/solr / get_subtitle

Method get_subtitle

dev-tools/scripts/releaseWizard.py:778–788  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

776 return None
777
778 def get_subtitle(self):
779 if self.depends:
780 ret_str = ""
781 for dep in ensure_list(self.depends):
782 g = state.get_group_by_id(dep)
783 if not g:
784 g = state.get_todo_by_id(dep)
785 if g and not g.is_done():
786 ret_str += "NOTE: Please first complete '%s'\n" % g.title
787 return ret_str.strip()
788 return None
789
790
791class Todo(SecretYamlObject):

Callers

nothing calls this directly

Calls 5

ensure_listFunction · 0.85
get_group_by_idMethod · 0.80
get_todo_by_idMethod · 0.80
stripMethod · 0.80
is_doneMethod · 0.45

Tested by

no test coverage detected