Adding epc directory to output

This commit is contained in:
Khalim Conn-Kowlessar 2024-07-02 12:06:18 +01:00
parent 298bb5a148
commit b8e7693479

View file

@ -159,7 +159,12 @@ def app():
)
if response is None:
continue
collected_data.append(response)
collected_data.append(
{
**response,
"epc_directory": directory
}
)
energy_consumption_data.extend(collected_data)