6 lines
210 B
Python
6 lines
210 B
Python
def pipeBusSource(name, entity, busKey, structure, fmt):
|
|
valueType = structure.model.fields[name][0]
|
|
return fmt \
|
|
.replace("%BUS_KEY%", busKey) \
|
|
.replace("%BUS_VALUE_TYPE%", valueType)
|