MCPcopy Create free account
hub / github.com/scottrogowski/code2flow / all_groups

Method all_groups

code2flow/model.py:571–579  ·  view source on GitHub ↗

List of groups that are part of this group + all subgroups :rtype: list[Group]

(self)

Source from the content-addressed store, hash-verified

569 return constructors[0]
570
571 def all_groups(self):
572 """
573 List of groups that are part of this group + all subgroups
574 :rtype: list[Group]
575 """
576 ret = [self]
577 for subgroup in self.subgroups:
578 ret += subgroup.all_groups()
579 return ret
580
581 def get_variables(self, line_number=None):
582 """

Callers 5

map_itFunction · 0.80
_limit_namespacesFunction · 0.80
_resolve_str_variableFunction · 0.80
resolve_variablesMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected