Skip to content

Commit db74c54

Browse files
committed
fix typo
1 parent 24a5888 commit db74c54

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pyTigerGraph/pyTigerGraphVertex.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -129,13 +129,13 @@ def getVertexVectors(self, vertexType: str) -> list:
129129

130130
return ret
131131

132-
def getVectorStatus(self, vertexType: str, vectorAttr: str = "") -> bool:
132+
def getVectorStatus(self, vertexType: str, vectorName: str = "") -> bool:
133133
"""Check the rebuild status of the vertex type or the embedding attribute
134134
135135
Args:
136136
vertexType:
137137
The name of the vertex type.
138-
vectorAttr:
138+
vectorName:
139139
The name of the vector attribute, optional.
140140
141141
Returns:

pyTigerGraph/pytgasync/pyTigerGraphVertex.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ async def getVectorStatus(self, vertexType: str, vectorName: str = "") -> bool:
139139
Args:
140140
vertexType:
141141
The name of the vertex type.
142-
vectorAttr:
142+
vectorName:
143143
The name of the vector attribute, optional.
144144
145145
Returns:

0 commit comments

Comments
 (0)