Skip to content

Commit

Permalink
Remove redundant inheritance
Browse files Browse the repository at this point in the history
  • Loading branch information
whimo committed Apr 25, 2024
1 parent dc0c4c9 commit e6ff0a1
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions motleycrew/storage/kuzu_graph_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,10 @@

from typing import Any, Dict, List, Optional

from llama_index.core.graph_stores.types import GraphStore

import kuzu


class MotleyQuestionGraphStore(GraphStore):
class MotleyQuestionGraphStore:
IS_SUBQUESTION_PREDICATE = "IS_SUBQUESTION"

def __init__(
Expand Down Expand Up @@ -175,7 +173,6 @@ def from_dict(cls, config_dict: Dict[str, Any]) -> "MotleyQuestionGraphStore":

if __name__ == "__main__":
from pathlib import Path
import kuzu

here = Path(__file__).parent
db_path = here / "test1"
Expand Down

0 comments on commit e6ff0a1

Please sign in to comment.