We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2bdcca4 commit 6d9fe35Copy full SHA for 6d9fe35
1 file changed
irods/access.py
@@ -204,7 +204,7 @@ def __repr__(self):
204
205
class iRODSAccess(_iRODSAccess_base, metaclass=_Access_LookupMeta):
206
"""
207
- This class represents an ACL in iRODS and functions as a data container
+ Represents an ACL in iRODS. An instance of this class functions as a data container
208
to convey information to the iRODS server (in the `set` call) and back again to the client
209
again (in the `get` call).
210
@@ -245,6 +245,7 @@ def __eq__(self, other):
245
246
def __hash__(self):
247
# Hash in a way consistent with an iRODSAccess having path "".
248
+ # noqa: D105
249
return hash((
250
self.access_name,
251
"", # path
0 commit comments