Skip to content

Commit

Permalink
tiny fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ILSparkle committed Dec 13, 2024
1 parent 2a967ca commit ea377cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cardinal/graph/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
class Config:
graph_storage: str
neo4j_uri: Optional[str]
cluster_level: int
cluster_level: str


settings = Config(
graph_storage=os.environ.get("GRAPH_STORAGE"),
neo4j_uri=os.environ.get("NEO4J_URI"),
cluster_level=int(os.environ.get("CLUSTER_LEVEL"))
cluster_level=os.environ.get("CLUSTER_LEVEL")
)

0 comments on commit ea377cf

Please sign in to comment.