(self, key: str)
| 41 | self.wrapped_mapping = d |
| 42 | |
| 43 | def get(self, key: str): |
| 44 | if self.wrapped_mapping and key in self.wrapped_mapping: |
| 45 | self.count += 1 |
| 46 | return self.wrapped_mapping[key] |
| 47 | return None |
| 48 | |
| 49 | |
| 50 | class FeaturesDict(top_level_feature.TopLevelFeature): |
no outgoing calls