(
self, anon_map: anon_map, bindparams: List[BindParameter[Any]]
)
| 462 | """ |
| 463 | |
| 464 | def _gen_cache_key( |
| 465 | self, anon_map: anon_map, bindparams: List[BindParameter[Any]] |
| 466 | ) -> Tuple[Any, ...]: |
| 467 | if self._annotations: |
| 468 | return (self,) + self._annotations_cache_key |
| 469 | else: |
| 470 | return (self,) |
| 471 | |
| 472 | if not typing.TYPE_CHECKING: |
| 473 | # typing tools seem to be inconsistent in how they handle |
no outgoing calls
no test coverage detected