remove example

This commit is contained in:
Michael Fogleman 2018-01-22 10:56:33 -05:00
parent 4e7ce86193
commit b864fdc36a
1 changed files with 0 additions and 13 deletions

View File

@ -1,13 +0,0 @@
import axi
import sys
def main():
args = sys.argv[1:]
if len(args) != 1:
print 'Usage: python axifile.py drawing.axi'
return
d = axi.Drawing.load(args[0])
axi.draw(d)
if __name__ == '__main__':
main()