diff options
| author | Alex Schofield <git@ajschof.me> | 2025-02-20 16:54:30 +0000 |
|---|---|---|
| committer | Alex Schofield <git@ajschof.me> | 2025-02-20 16:54:30 +0000 |
| commit | d6ee751c96d069d44f356c614d1ffc9ffe4f2780 (patch) | |
| tree | 9cc6f231067dc7eba080fe7fb0d159bc24e7e2ec /run.py | |
| parent | 87510736e150f350ff4644c7c1546b9d8adf1d94 (diff) | |
| download | rb-leave-my-bpm-alone-d6ee751c96d069d44f356c614d1ffc9ffe4f2780.tar.gz rb-leave-my-bpm-alone-d6ee751c96d069d44f356c614d1ffc9ffe4f2780.zip | |
add initial code for run.py
Diffstat (limited to 'run.py')
| -rw-r--r-- | run.py | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -0,0 +1,8 @@ +import xml.etree.ElementTree as xml +import sys + +def main(file): + pass + +if __name__ == "__main__": + main(str(sys.argv[1])) |
