Skip to content

Commit

Permalink
Update component.py
Browse files Browse the repository at this point in the history
  • Loading branch information
roxanneelbaff authored Dec 7, 2023
1 parent 92ccad1 commit f5c0e43
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions cag/framework/component.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,13 @@ class Component(object):
_name = "Component"

def __init__(self, conf: Config = None):
print("Inside Component")
edges = self._base_edge_definitions + self._edge_definitions
if conf is None:
conf = configuration(use_global_conf=True)
self.conf = conf
self.database = conf.db
self.graph_name = conf.graph
self.test = "TEST"

if self.database.hasGraph(self.graph_name):
self.graph: BaseGraph = self.database.graphs[self.graph_name]
else:
Expand Down

0 comments on commit f5c0e43

Please sign in to comment.