reorg elab_query

This commit is contained in:
2025-08-09 19:09:40 +02:00
parent 5fc40093e2
commit 3a3b63e360
9 changed files with 166 additions and 119 deletions

7
src/utils/general.py Normal file
View File

@@ -0,0 +1,7 @@
def alterna_valori(val1: str, val2: str) -> any:
"""
Restituisce alternativamente il primo ed il secondo valore
"""
while True:
yield val1
yield val2