(group)
| 255 | |
| 256 | |
| 257 | def getgroupid(group): |
| 258 | import grp |
| 259 | |
| 260 | if not isinstance(group, int): |
| 261 | group = grp.getgrnam(group)[2] # type:ignore[attr-defined,unused-ignore] |
| 262 | return group |
| 263 | |
| 264 | |
| 265 | class LocalPath: |
no outgoing calls
no test coverage detected
searching dependent graphs…