Skip to content

Commit c5336fb

Browse files
committed
Pace lint
1 parent cd5398b commit c5336fb

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

demo/pg-hybrid/chat_with_hybrid_kb.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
Note: This demo focuses on retrieval patterns. For production, integrate
2727
with your LLM of choice (OpenAI, Anthropic, local models, etc.)
2828
'''
29-
# noqa: E501
29+
# See pyproject.toml for instruction to ignore `E501` (line too long)
3030

3131
import asyncio
3232
import os

demo/pg-hybrid/hybrid_rerank_demo.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
Usage:
2323
python hybrid_rerank_demo.py
2424
'''
25+
# See pyproject.toml for instruction to ignore `E501` (line too long)
2526

2627
import asyncio
2728
import os

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,7 @@ ban-relative-imports = "all"
198198
# Ignore `E501` (line too long) in the following files:
199199
"demo/pg-hybrid/hybrid_search_demo.py" = ["E501"]
200200
"demo/pg-hybrid/chat_with_hybrid_kb.py" = ["E501"]
201+
"demo/pg-hybrid/hybrid_rerank_demo.py" = ["E501"]
201202

202203
[tool.coverage.run]
203204
source_pkgs = ["ogbujipt", "test"]

0 commit comments

Comments
 (0)