Skip to content

Commit

Permalink
Corrected the function doc string
Browse files Browse the repository at this point in the history
Signed-off-by: Parag Kamble <[email protected]>
  • Loading branch information
paraggit committed Jul 4, 2024
1 parent ee41bc8 commit cc1e0ff
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions ocs_ci/ocs/node.py
Original file line number Diff line number Diff line change
Expand Up @@ -2812,6 +2812,10 @@ def verify_crypt_device_present_onnode(node, vol_handle):
Args:
node : node name
vol_handle : volumen handle name.
Returns:
True: if volume handle device found on the node.
False: if volume handle device not found on the node.
"""
device_list = list_encrypted_rbd_devices_onnode(node)
crypt_device = [device for device in device_list if vol_handle in device]
Expand Down

0 comments on commit cc1e0ff

Please sign in to comment.