Skip to content

Commit

Permalink
pylint ignores
Browse files Browse the repository at this point in the history
  • Loading branch information
vprelovac committed Oct 25, 2023
1 parent 8c5902a commit f23ca52
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion vectordb/memory.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
for text and associated metadata, with functionality for saving, searching, and
managing memory entries.
"""
#pylint: disable = line-too-long, trailing-whitespace, trailing-newlines
#pylint: disable = line-too-long, trailing-whitespace, trailing-newlines, line-too-long, missing-module-docstring, import-error, too-few-public-methods, too-many-instance-attributes, too-many-locals

from typing import List, Dict, Any, Union
import itertools
Expand Down
2 changes: 1 addition & 1 deletion vectordb/storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
This module provides the Storage class for saving and loading data to and from a disk.
"""

#pylint: disable = line-too-long, trailing-whitespace, trailing-newlines
#pylint: disable = line-too-long, trailing-whitespace, trailing-newlines, line-too-long, missing-module-docstring, import-error, too-few-public-methods, too-many-instance-attributes, too-many-locals

from typing import List, Dict, Any
import pickle
Expand Down
2 changes: 1 addition & 1 deletion vectordb/vector_search.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
This module provides the VectorSearch class for performing vector search using various algorithms.
"""

# pylint: disable = line-too-long, trailing-whitespace, trailing-newlines
#pylint: disable = line-too-long, trailing-whitespace, trailing-newlines, line-too-long, missing-module-docstring, import-error, too-few-public-methods, too-many-instance-attributes, too-many-locals

from typing import List
import numpy as np
Expand Down

0 comments on commit f23ca52

Please sign in to comment.