Skip to content

Commit 6d9fe35

Browse files
committed
ruff3
1 parent 2bdcca4 commit 6d9fe35

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

irods/access.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ def __repr__(self):
204204

205205
class iRODSAccess(_iRODSAccess_base, metaclass=_Access_LookupMeta):
206206
"""
207-
This class represents an ACL in iRODS and functions as a data container
207+
Represents an ACL in iRODS. An instance of this class functions as a data container
208208
to convey information to the iRODS server (in the `set` call) and back again to the client
209209
again (in the `get` call).
210210
"""
@@ -245,6 +245,7 @@ def __eq__(self, other):
245245

246246
def __hash__(self):
247247
# Hash in a way consistent with an iRODSAccess having path "".
248+
# noqa: D105
248249
return hash((
249250
self.access_name,
250251
"", # path

0 commit comments

Comments
 (0)