Skip to content

Commit b711510

Browse files
authored
add None return type to close() in viam_client (#963)
1 parent 3ccaf2f commit b711510

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/viam/app/viam_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ async def main():
206206
"""
207207
return ProvisioningClient(self._channel, self._metadata)
208208

209-
def close(self):
209+
def close(self) -> None:
210210
"""Close opened channels used for the various service stubs initialized."""
211211
if self._closed:
212212
LOGGER.debug("ViamClient is already closed.")

0 commit comments

Comments
 (0)