(fname: str, glob: dict[str, Any])
| 78 | |
| 79 | |
| 80 | def execfile(fname: str, glob: dict[str, Any]) -> None: |
| 81 | with open(fname, "rb") as f: |
| 82 | exec(compile(f.read(), fname, "exec"), glob, glob) # noqa: S102 |
| 83 | |
| 84 | |
| 85 | class LazyConfigValue(HasTraits): |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…