Skip to content

Commit 62bd29a

Browse files
committed
Fix docstring line length
Signed-off-by: Amit Zuker <[email protected]>
1 parent 04db04c commit 62bd29a

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

tests/unittest/llmapi/test_llm.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1435,7 +1435,9 @@ def test_llama_7b_peft_cache_config_affects_peft_cache_size():
14351435

14361436

14371437
def test_llama_7b_lora_config_overrides_peft_cache_config():
1438-
"""Tests that cache size args in lora_config LLM arg override the cache size parameters in peft_cache_config LLM arg."""
1438+
"""Tests that cache size args in lora_config LLM arg override the cache size
1439+
parameters in peft_cache_config LLM arg.
1440+
""" # noqa: D205
14391441
build_config = BuildConfig(lora_config=LoraConfig(
14401442
lora_target_modules=['attn_q', 'attn_k', 'attn_v'], max_lora_rank=8))
14411443
check_llama_7b_multi_lora_from_request_test_harness(

tests/unittest/llmapi/test_llm_pytorch.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,9 @@ def test_llama_7b_peft_cache_config_affects_peft_cache_size():
326326

327327

328328
def test_llama_7b_lora_config_overrides_peft_cache_config():
329-
"""Tests that cache size args in lora_config LLM arg override the cache size parameters in peft_cache_config LLM arg."""
329+
"""Tests that cache size args in lora_config LLM arg override the cache size
330+
parameters in peft_cache_config LLM arg.
331+
""" # noqa: D205
330332
check_llama_7b_multi_lora_from_request_test_harness(
331333
LLM,
332334
lora_config=LoraConfig(

0 commit comments

Comments
 (0)