mirror of
https://github.com/github/codeql.git
synced 2025-12-16 08:43:11 +01:00
11 lines
251 B
Python
Executable File
11 lines
251 B
Python
Executable File
#!/usr/bin/env python
|
|
'''This module sets up sys.path from the environment
|
|
and runs the .import file generation.'''
|
|
|
|
import python_tracer
|
|
|
|
if __name__ == "__main__":
|
|
python_tracer.load_library()
|
|
import semmle.imports
|
|
semmle.imports.main()
|