(self, key: str)
| 72 | self._store: Dict[str, List[NormalizedConstraints]] = {} |
| 73 | |
| 74 | def get(self, key: str) -> Optional[NormalizedConstraints]: |
| 75 | return self._store.get(key) |
| 76 | |
| 77 | def put(self, key: str, value: List[NormalizedConstraints]): |
| 78 | self._store[key] = value |
no outgoing calls