Merge branch 'master' of kuhl-mann.de:jkuhl/corrlib

This commit is contained in:
Justus Kuhlmann 2025-05-24 11:39:51 +00:00
commit 2ff46ee56f

View file

@ -9,6 +9,7 @@ from .main import update_aliases
from .meas_io import drop_cache as mio_drop_cache from .meas_io import drop_cache as mio_drop_cache
import os import os
app = typer.Typer() app = typer.Typer()
@ -77,7 +78,7 @@ def alias_add(
""" """
Add an alias to a project UUID. Add an alias to a project UUID.
""" """
alias_list = alias.pülit(",") alias_list = alias.split(",")
update_aliases(path, uuid, alias_list) update_aliases(path, uuid, alias_list)
return return