File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # noqa
2+
13import collections
24import copy
35import warnings
@@ -225,7 +227,7 @@ class ACLOperation(iRODSAccess):
225227 It differs, however, in that it forgoes option to store a logical object path. (In the atomic
226228 API call, there is always a single logical path to which all such operations apply, thus
227229 it is appropriate that the path parameter is in a location separate from the operations.)
228- """ # noqa: D400 RUF100
230+ """ # noqa: D400
229231
230232 # ruff: noqa: D105 on
231233
Original file line number Diff line number Diff line change 1+ # noqa
2+
13# if you're copying these from the docs, you might find the following regex helpful:
24# s/\(\w\+\)\s\+\(-\d\+\)/class \1(SystemException):\r code = \2/g
35
4-
56import errno
67import numbers
78import os
@@ -650,8 +651,7 @@ class SYS_INVALID_INPUT_PARAM(SystemException):
650651 code = - 130000
651652
652653
653- class SYS_INTERNAL_ERR (SystemException ): # noqa: N801
654- # noqa: D101
654+ class SYS_INTERNAL_ERR (SystemException ):
655655 code = - 154000
656656
657657
@@ -2125,3 +2125,4 @@ class PAM_AUTH_PASSWORD_FAILED(PAMException):
21252125
21262126class PAM_AUTH_PASSWORD_INVALID_TTL (PAMException ):
21272127 code = - 994000
2128+
Original file line number Diff line number Diff line change 1+ # noqa
12""" The access manager is a collection of methods useful for managing iRODS ACLs. """
23
34import logging
You can’t perform that action at this time.
0 commit comments