Class
_PathState
Track the metadata associated with the path.
Source from the content-addressed store, hash-verified
| 87 | |
| 88 | @dataclasses.dataclass |
| 89 | class _PathState: |
| 90 | """Track the metadata associated with the path.""" |
| 91 | |
| 92 | is_gcs: bool |
| 93 | is_abs: bool |
| 94 | |
| 95 | |
| 96 | class MockFs(object): |