This commit is contained in:
Михаил Капелько
2024-01-08 17:56:57 +03:00
parent a35ffcfbd4
commit 00a9a25997
4 changed files with 6 additions and 4 deletions

View File

@@ -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)