(self, dir)
| 43 | """A context for prepending a directory to sys.path for a second.""" |
| 44 | |
| 45 | def __init__(self, dir): |
| 46 | self.dir = dir |
| 47 | |
| 48 | def __enter__(self): |
| 49 | if self.dir not in sys.path: |
nothing calls this directly
no outgoing calls
no test coverage detected