Skip to content

Commit 15d09e8

Browse files
committed
ruff nr. 3
1 parent dcaf1d6 commit 15d09e8

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

irods/access.py

Lines changed: 2 additions & 2 deletions
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
"""
@@ -222,7 +222,7 @@ class ACLOperation(iRODSAccess):
222222
class in that it has no field to store a logical object path. (For an atomic API call, i
223223
here is always a single logical path to which all operations apply, meaning that it is
224224
appropriate to conveyed that in a location separate from the operations themselves.)
225-
"""
225+
""" # noqa: D400
226226

227227
def __init__(self, access_name: str, user_name: str = "", user_zone: str = ""):
228228
super().__init__(

irods/test/access_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
import sys
55
import unittest
66

7-
from irods.test import helpers
87
from irods.access import ACLOperation, iRODSAccess
98
from irods.collection import iRODSCollection
109
from irods.column import In, Like
1110
from irods.exception import UserDoesNotExist
1211
from irods.models import Collection, DataObject, User
1312
from irods.path import iRODSPath
1413
from irods.session import iRODSSession
14+
from irods.test import helpers
1515
from irods.user import iRODSUser
1616

1717

0 commit comments

Comments
 (0)