(self, dictionary, *keys)
| 34 | """ |
| 35 | |
| 36 | def __init__(self, dictionary, *keys): |
| 37 | self.dictionary = dictionary |
| 38 | self.keys = keys |
| 39 | |
| 40 | def __enter__(self): |
| 41 | # Actions to perform upon exiting. |
nothing calls this directly
no outgoing calls
no test coverage detected