Parameters ---------- patch : `~.patches.Patch`
(self, patch)
| 2854 | """ |
| 2855 | |
| 2856 | def __init__(self, patch): |
| 2857 | """ |
| 2858 | Parameters |
| 2859 | ---------- |
| 2860 | patch : `~.patches.Patch` |
| 2861 | """ |
| 2862 | # Defer to TransformedPath.__init__. |
| 2863 | super().__init__(patch.get_path(), patch.get_transform()) |
| 2864 | self._patch = patch |
| 2865 | |
| 2866 | def _revalidate(self): |
| 2867 | patch_path = self._patch.get_path() |
nothing calls this directly
no test coverage detected