Skip to content

Commit fe51e78

Browse files
committed
README ':'->'.'
1 parent b9c4088 commit fe51e78

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2140,7 +2140,7 @@ session.acls.apply_atomic_operations(
21402140
`ACLOperation` objects form a linear order with `iRODSAccess` objects, and
21412141
indeed are subclassed from them as well, allowing intermixed sequences to be
21422142
sorted. Care should be taken to normalize the objects before such comparisons,
2143-
sorting, or with related uses of the 'in' operator:
2143+
sorting, or with related uses of the 'in' operator.
21442144
```py
21452145
from irods.access import *
21462146
normalize = lambda acl: acl.copy(decanonicalize=-1, implied_zone='tempZone')
@@ -2165,7 +2165,7 @@ pp(sorted(
21652165
ACLOperation('read', 'bob'),
21662166
ACLOperation('own', 'rods'),
21672167
ACLOperation('read_object', 'alice')
2168-
],
2168+
],
21692169
key=lambda acl: (all_permissions[acl.access_name], normalize(acl))
21702170
))
21712171
```

0 commit comments

Comments
 (0)