MCPcopy Create free account
hub / github.com/apache/madlib / construct_yaml_set

Method construct_yaml_set

src/madpack/yaml/constructor.py:373–377  ·  view source on GitHub ↗
(self, node)

Source from the content-addressed store, hash-verified

371 pairs.append((key, value))
372
373 def construct_yaml_set(self, node):
374 data = set()
375 yield data
376 value = self.construct_mapping(node)
377 data.update(value)
378
379 def construct_yaml_str(self, node):
380 value = self.construct_scalar(node)

Callers

nothing calls this directly

Calls 2

construct_mappingMethod · 0.95
updateMethod · 0.80

Tested by

no test coverage detected