(self, o: SetComprehension)
| 419 | return self._visit_unsupported_expr(o) |
| 420 | |
| 421 | def visit_set_comprehension(self, o: SetComprehension) -> str: |
| 422 | return self._visit_unsupported_expr(o) |
| 423 | |
| 424 | def visit_dictionary_comprehension(self, o: DictionaryComprehension) -> str: |
| 425 | return self._visit_unsupported_expr(o) |
nothing calls this directly
no test coverage detected