The file permissions for the lockfile.
(self)
| 361 | |
| 362 | @property |
| 363 | def mode(self) -> int: |
| 364 | """The file permissions for the lockfile.""" |
| 365 | return 0o644 if self._context.mode == _UNSET_FILE_MODE else self._context.mode |
| 366 | |
| 367 | @property |
| 368 | def has_explicit_mode(self) -> bool: |
nothing calls this directly
no outgoing calls
no test coverage detected