Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicole00 committed Mar 4, 2024
1 parent 74c445b commit 947f202
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions example/ScanVertexEdgeExample.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def scan_person_vertex(graph_storage_client):
print("======== Scan vertexes in ScanSpace ======")
while resp.has_next():
result = resp.next()
if (result is not None):
if result is not None:
for vertex_data in result:
print(vertex_data)

Expand All @@ -71,7 +71,7 @@ def scan_person_edge(graph_storage_client):
print("======== Scan edges in ScanSpace ======")
while resp.has_next():
result = resp.next()
if (result is not None):
if result is not None:
for edge_data in result:
print(edge_data)

Expand Down

0 comments on commit 947f202

Please sign in to comment.