Skip to content

Commit 5388c19

Browse files
Fix CI and lint issues
1 parent 841c1a0 commit 5388c19

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

examples/meta_tools_example.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,7 @@
2626

2727
from stackone_ai import StackOneToolSet
2828

29-
_account_ids = [
30-
aid.strip()
31-
for aid in os.getenv("STACKONE_ACCOUNT_ID", "").split(",")
32-
if aid.strip()
33-
]
29+
_account_ids = [aid.strip() for aid in os.getenv("STACKONE_ACCOUNT_ID", "").split(",") if aid.strip()]
3430

3531

3632
def example_openai_meta_tools() -> None:

stackone_ai/meta_tools.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
)
2020

2121
if TYPE_CHECKING:
22-
from stackone_ai.toolset import SearchMode, StackOneToolSet
22+
from stackone_ai.toolset import StackOneToolSet
2323

2424

2525
class MetaToolsOptions(BaseModel):

0 commit comments

Comments
 (0)