Skip to content

Commit 0d64c93

Browse files
committed
D400 corrrection
1 parent e0df45f commit 0d64c93

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

irods/access.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,14 +217,16 @@ def __init__(self, access_name, path, user_name="", user_zone="", user_type=None
217217

218218

219219
class ACLOperation(iRODSAccess):
220+
# ruff: enable[D400]
220221
"""
221222
Represents an operation to be performed in iRODS' atomic ACL api.
222223
223224
Similar to its base class, iRODSAccess, this class names an ACL to be set on an object.
224225
It differs, however, in that it forgoes option to store a logical object path. (In the atomic
225226
API call, there is always a single logical path to which all such operations apply, thus
226227
it is appropriate that the path parameter is in a location separate from the operations.)
227-
""" # noqa: D400
228+
""" # the 'noqa: D400' annotation placed here was ignored by ruff
229+
# ruff: disable[D400]
228230

229231
# ruff: noqa: D105 on
230232

0 commit comments

Comments
 (0)