Skip to content

Commit af35f23

Browse files
committed
ignore FBT001 error
1 parent eed06a3 commit af35f23

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

pyproject.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,8 @@ lint.ignore = [
160160
"B027",
161161
# Allow boolean positional values in function calls, like `dict.get(... True)`
162162
"FBT003",
163+
# Allow boolean positional values in function calls like cluster options
164+
"FBT001",
163165
# Ignore checks for possible passwords
164166
"S105", "S106", "S107",
165167
# Ignore complexity

tests/search_document_store/test_retriever.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
from haystack.dataclasses import Document
88

99
from couchbase_haystack import (
10+
CouchbasePasswordAuthenticator,
1011
CouchbaseSearchDocumentStore,
1112
CouchbaseSearchEmbeddingRetriever,
12-
CouchbasePasswordAuthenticator,
1313
)
1414
from tests.common.common import IS_GLOBAL_LEVEL_INDEX
1515

0 commit comments

Comments
 (0)