|
|
@@ -15,6 +15,7 @@ def sectionGeneratedPipes(entity, sub, c): |
|
|
|
|
|
|
|
for key in entity.pipes: |
|
|
|
values = entity.pipes[key] |
|
|
|
print(f"sectionGP-1 key/values: '{key}'/'{values}'") |
|
|
|
|
|
|
|
# EX_NAME. |
|
|
|
firstLetter = key[:1].capitalize() |
|
|
@@ -30,8 +31,10 @@ def sectionGeneratedPipes(entity, sub, c): |
|
|
|
|
|
|
|
# SRC. |
|
|
|
src = pipeSource(key, entity) |
|
|
|
print(f"sectionGP-2 key/src: '{key}'/'{src}'") |
|
|
|
# Bus. |
|
|
|
if src.startswith("K."): |
|
|
|
print(f"sectionGP-3 key: '{key}' bus") |
|
|
|
src = pipeBusSource(key, entity, src, c.structure, fmtBusPipe) |
|
|
|
|
|
|
|
fmtPipe = pipeFormat(fmtExRecent, fmtMany, fmtRecent, fmtSet, fmtToggle, fmtToggleNil, key, entity) |
|
|
|