reogranized imports

This commit is contained in:
2024-03-24 11:33:34 +01:00
parent dd2ffebca2
commit 5a4d30e162
9 changed files with 25 additions and 8 deletions

View File

@@ -1,5 +1,6 @@
import json
import os
import yaml
from config import Config
@@ -7,9 +8,11 @@ from renderer import Renderer
from structure import Structure
from xml_loader import XMLLoader
class UnsupportedFormatException(Exception):
...
class InstructionSetSchema:
VALID_EXTENSIONS = ("yaml", "json", "xml")