Skip to content

Commit f4b626e

Browse files
committed
add doc string for access manager module
1 parent 47e2ca4 commit f4b626e

2 files changed

Lines changed: 7 additions & 2 deletions

File tree

irods/access.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -303,13 +303,14 @@ class _iRODSAccess_pre_4_3_0(_iRODSAccess_base):
303303

304304
def __init__(self, *args, **kwargs):
305305
warnings.warn(
306-
"_iRODSAccess_pre_4_3_0 is deprecated and will be removed in a future version. Use iRODSAccess instead.",
306+
"_iRODSAccess_pre_4_3_0 is deprecated and will be removed in "
307+
"a future version. Use iRODSAccess instead.",
307308
DeprecationWarning,
308309
stacklevel=2,
309310
)
310311
super().__init__(*args, **kwargs)
311312

312-
# ruff: noqa: RUF012 N801 off
313+
# ruff: noqa: RUF012 N801 SLF001 off
313314

314315
_deprecated_names = {'_iRODSAccess_pre_4_3_0': _deprecated._iRODSAccess_pre_4_3_0}
315316

irods/manager/access_manager.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
"""
2+
The access manager is a collection of methods useful for managing iRODS ACLs.
3+
"""
4+
15
import logging
26
from os.path import basename, dirname
37

0 commit comments

Comments
 (0)