Skip to content

Commit d625516

Browse files
committed
Please pylint
1 parent 07deb80 commit d625516

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

instrumentation/opentelemetry-instrumentation-botocore/tests/test_botocore_bedrock.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -699,6 +699,7 @@ def test_invoke_model_with_content(
699699
instrument_with_content,
700700
model_family,
701701
):
702+
# pylint:disable=too-many-locals
702703
llm_model_value = get_model_name_from_family(model_family)
703704
max_tokens, temperature, top_p, stop_sequences = 10, 0.8, 1, ["|"]
704705
body = get_invoke_model_body(
@@ -840,6 +841,7 @@ def test_invoke_model_no_content(
840841
instrument_no_content,
841842
model_family,
842843
):
844+
# pylint:disable=too-many-locals
843845
llm_model_value = get_model_name_from_family(model_family)
844846
max_tokens, temperature, top_p, stop_sequences = 10, 0.8, 1, ["|"]
845847
body = get_invoke_model_body(
@@ -980,7 +982,7 @@ def test_invoke_model_with_response_stream_with_content(
980982
instrument_with_content,
981983
model_family,
982984
):
983-
# pylint:disable=too-many-locals,too-many-branches
985+
# pylint:disable=too-many-locals,too-many-branches,too-many-statements
984986
llm_model_value = get_model_name_from_family(model_family)
985987
max_tokens, temperature, top_p, stop_sequences = 10, 0.8, 1, ["|"]
986988
body = get_invoke_model_body(

0 commit comments

Comments
 (0)