Skip to content

Commit

Permalink
Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
silvanocerza committed Jan 25, 2024
1 parent d9f69fd commit 9bcfff8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ def _query(self, properties: List[str], batch_size: int, cursor=None):

return result["data"]["Get"][collection_name]

def filter_documents(self, filters: Optional[Dict[str, Any]] = None) -> List[Document]:
def filter_documents(self, filters: Optional[Dict[str, Any]] = None) -> List[Document]: # noqa: ARG002
properties = self._client.schema.get(self._collection_settings["class"]).get("properties", [])
properties = [prop["name"] for prop in properties]

Expand Down

0 comments on commit 9bcfff8

Please sign in to comment.