Skip to content

Commit 4ea260d

Browse files
committed
Resolve type checking errors
1 parent 05ebdbb commit 4ea260d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

agentstack/__init__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,13 @@
66
"""
77
from pathlib import Path
88
from agentstack import conf
9+
from agentstack.utils import get_framework
910
from agentstack.inputs import get_inputs
1011

1112
___all___ = [
1213
"conf",
1314
"get_tags",
15+
"get_framework",
1416
"get_inputs",
1517
]
1618

@@ -19,5 +21,5 @@ def get_tags() -> list[str]:
1921
"""
2022
Get a list of tags relevant to the user's project.
2123
"""
22-
return ['agentstack', conf.get_framework(), *conf.get_installed_tools()]
24+
return ['agentstack', get_framework(), *conf.get_installed_tools()]
2325

0 commit comments

Comments
 (0)