mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 18:22:39 +00:00
9 lines
236 B
Python
9 lines
236 B
Python
#!/usr/bin/env python3
|
|
import frontend
|
|
import dmm
|
|
|
|
if __name__ == '__main__':
|
|
settings = frontend.read_settings()
|
|
for fname in frontend.process(settings, "convert"):
|
|
dmm.DMM.from_file(fname).to_file(fname, settings.tgm)
|