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

Function djoin

code2flow/model.py:45–52  ·  view source on GitHub ↗

Convenience method to join strings with dots :rtype: str

(*tup)

Source from the content-addressed store, hash-verified

43
44
45def djoin(*tup):
46 """
47 Convenience method to join strings with dots
48 :rtype: str
49 """
50 if len(tup) == 1 and isinstance(tup[0], list):
51 return '.'.join(tup[0])
52 return '.'.join(tup)
53
54
55def flatten(list_of_lists):

Callers 14

process_importFunction · 0.85
make_nodesMethod · 0.85
make_class_groupMethod · 0.85
resolve_ownerFunction · 0.85
process_assignFunction · 0.85
get_inheritsFunction · 0.85
get_nameFunction · 0.85
make_local_variablesFunction · 0.85
get_inheritsFunction · 0.85
make_nodesMethod · 0.85
make_class_groupMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected