(self, dir)
| 21 | """A context for appending a directory to sys.path for a second.""" |
| 22 | |
| 23 | def __init__(self, dir): |
| 24 | self.dir = dir |
| 25 | |
| 26 | def __enter__(self): |
| 27 | if self.dir not in sys.path: |
nothing calls this directly
no outgoing calls
no test coverage detected