6 lines
165 B
Python
6 lines
165 B
Python
from schema import InstructionSetSchema
|
|
|
|
if __name__ == "__main__":
|
|
schema = InstructionSetSchema("example1.yaml")
|
|
schema.save("example1_v2.jpg")
|
|
input() |