langchain/libs/partners/exa/scripts/check_imports.py

18 lines
447 B
Python
Raw Normal View History

2024-01-25 03:57:17 +00:00
import sys
import traceback
from importlib.machinery import SourceFileLoader
if __name__ == "__main__":
files = sys.argv[1:]
has_failure = False
for file in files:
try:
SourceFileLoader("x", file).load_module()
except Exception:
has_faillure = True
print(file) # noqa: T201
2024-01-25 03:57:17 +00:00
traceback.print_exc()
print() # noqa: T201
2024-01-25 03:57:17 +00:00
sys.exit(1 if has_failure else 0)