| 466 | |
| 467 | |
| 468 | class HasAnyQuery2(HasAnyQuery): |
| 469 | def visit_callable_type(self, t: CallableType) -> bool: |
| 470 | # We don't want to flag references to functions with some Any |
| 471 | # argument types (etc.) since they generally don't mean trouble. |
| 472 | return False |
| 473 | |
| 474 | |
| 475 | def is_generic(t: Type) -> bool: |
no outgoing calls
no test coverage detected
searching dependent graphs…