(cls, config: dict[str, Any])
| 33 | |
| 34 | @classmethod |
| 35 | def from_config(cls, config: dict[str, Any]) -> RevInfo: |
| 36 | return cls(config['repo'], config['rev']) |
| 37 | |
| 38 | def update(self, tags_only: bool, freeze: bool) -> RevInfo: |
| 39 | with tempfile.TemporaryDirectory() as tmp: |