Last active
August 29, 2015 14:11
-
-
Save boredstiff/8e6c9efcff04a3d9f9b6 to your computer and use it in GitHub Desktop.
importPaths.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#python | |
""" | |
Modo: print all import paths to the event log. | |
""" | |
import lx | |
platform = lx.service.Platform() | |
pathCount = platform.ImportPathCount() | |
for each in range(pathCount): | |
index = platform.ImportPathByIndex(each) | |
lx.out(index) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment