The record of a single installed file from a PEP 376 RECORD file. See: https://peps.python.org/pep-0376/#record
| 68 | |
| 69 | @attr.s(frozen=True) |
| 70 | class InstalledFile(object): |
| 71 | """The record of a single installed file from a PEP 376 RECORD file. |
| 72 | |
| 73 | See: https://peps.python.org/pep-0376/#record |
| 74 | """ |
| 75 | |
| 76 | path = attr.ib() # type: Text |
| 77 | hash = attr.ib(default=None) # type: Optional[Hash] |
| 78 | size = attr.ib(default=None) # type: Optional[int] |
| 79 | |
| 80 | |
| 81 | @attr.s(frozen=True) |
no outgoing calls
no test coverage detected