mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-08-01 16:24:44 +00:00
add comment for the noqa
This commit is contained in:
parent
c73fe390ad
commit
62a21a3072
1 changed files with 6 additions and 1 deletions
|
@ -31,7 +31,12 @@ from .strong_typing.schema import json_schema_type
|
||||||
|
|
||||||
schema_utils.json_schema_type = json_schema_type
|
schema_utils.json_schema_type = json_schema_type
|
||||||
|
|
||||||
from llama_stack.distribution.stack import LLAMA_STACK_API_VERSION, LlamaStack # noqa
|
# this line needs to be here to ensure json_schema_type has been altered before
|
||||||
|
# the imports use the annotation
|
||||||
|
from llama_stack.distribution.stack import ( # noqa: E402
|
||||||
|
LLAMA_STACK_API_VERSION,
|
||||||
|
LlamaStack,
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
def main(output_dir: str):
|
def main(output_dir: str):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue