Files
KI/utils.py
2025-04-15 13:36:57 +02:00

2 lines
79 B
Python

def getNode(name, l):
return next(( i for i in l if i.name == name), -1 )