(self, observation_type: str)
| 810 | |
| 811 | class ImageObservationProcessor(ObservationProcessor): |
| 812 | def __init__(self, observation_type: str): |
| 813 | self.observation_type = observation_type |
| 814 | self.observation_tag = "image" |
| 815 | self.meta_data = create_empty_metadata() |
| 816 | |
| 817 | def process(self, page: Page, client: CDPSession, context: str) -> npt.NDArray[np.uint8]: |
| 818 | try: |
nothing calls this directly
no test coverage detected