Skip to content

Commit

Permalink
update bmeg-dictionary ref
Browse files Browse the repository at this point in the history
  • Loading branch information
adamstruck committed Dec 20, 2019
1 parent 243dcf9 commit e57def7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/bmeg/bmeg-dictionary
Submodule bmeg-dictionary updated 0 files
4 changes: 2 additions & 2 deletions src/bmeg/emitter.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ def close(self):
self.rate.close()

def emit_edge(self, obj: Edge):
# obj.validate()
obj.validate()
gid = "(%s)--%s->(%s)" % (obj.from_gid, obj.label(), obj.to_gid)
dumped = {
"_id": gid,
Expand All @@ -127,7 +127,7 @@ def emit_edge(self, obj: Edge):
return dumped

def emit_vertex(self, obj: Vertex):
# obj.validate()
obj.validate()
dumped = {
"_id": obj.gid(),
"gid": obj.gid(),
Expand Down

0 comments on commit e57def7

Please sign in to comment.