(self, pex_directory)
| 44 | return Layout.for_value(fp.read().strip()) |
| 45 | |
| 46 | def record(self, pex_directory): |
| 47 | # type: (str) -> None |
| 48 | with open(os.path.join(pex_directory, PEX_LAYOUT_PATH), "w") as fp: |
| 49 | fp.write(self.value) |
| 50 | |
| 51 | ZIPAPP = Value("zipapp") |
| 52 | PACKED = Value("packed") |