after merge bugfix
This commit is contained in:
parent
8cd3f36589
commit
e1589a0abb
1 changed files with 3 additions and 1 deletions
|
@ -6,8 +6,10 @@ from .toml import import_tomls, update_project, reimport_project
|
||||||
from .find import find_record, list_projects
|
from .find import find_record, list_projects
|
||||||
from .tools import str2list
|
from .tools import str2list
|
||||||
from .main import update_aliases
|
from .main import update_aliases
|
||||||
|
from .meas_io import drop_cache as mio_drop_cache
|
||||||
import os
|
import os
|
||||||
|
|
||||||
|
|
||||||
app = typer.Typer()
|
app = typer.Typer()
|
||||||
|
|
||||||
|
|
||||||
|
@ -76,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
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue