Skip to content

Commit b83e857

Browse files
committed
ruff: docstring: correct return/raise
1 parent 4b19655 commit b83e857

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

irods/manager/user_manager.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,11 @@ def _parse_user_and_zone(user_param, zone_param):
5555
user and zone names joined with "#".
5656
zone_param: a simple zone name,
5757
58-
Return:
58+
Returns:
5959
The resulting parsed user and zone.
6060
61-
Raise:
62-
RuntimeError in the case of formatting errors or conflicting zone names.
61+
Raises:
62+
RuntimeError: in the case of formatting errors or conflicting zone names.
6363
"""
6464
if '#' in user_param:
6565
u_parsed_user, u_parsed_zone = user_param.split('#', 1)

0 commit comments

Comments
 (0)