1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-30 00:00:11 +01:00

Fix more flake8 warnings

Signed-off-by: Steffen Vogel <steffen.vogel@opal-rt.com>
This commit is contained in:
Steffen Vogel 2023-09-04 19:22:56 +02:00 committed by Steffen Vogel
parent bbb3cfe240
commit 3cc212423e

View file

@ -27,20 +27,20 @@ def get_dpsim_shmem_interface_signals():
def get_dpsim_shmem_interface_config(): def get_dpsim_shmem_interface_config():
return { return {
'type': 'shmem', 'type': 'shmem',
'in': { 'in': {
'name': '/dpsim1-villas', 'name': '/dpsim1-villas',
'hooks': [ 'hooks': [
{ {
'type': 'stats' 'type': 'stats'
} }
], ],
'signals': get_dpsim_shmem_interface_signals() 'signals': get_dpsim_shmem_interface_signals()
}, },
'out': { 'out': {
'name': '/villas-dpsim1' 'name': '/villas-dpsim1'
}
} }
}
def get_villas_config(): def get_villas_config():