Remove unused imports

Added TODO about imports for crc.models.workflow that aren't correct. I believe this was for files to the file system refactor, and we don't actually use this.
This commit is contained in:
mike cullerton 2022-04-12 13:55:35 -04:00
parent 7d62c2dd18
commit fdea2d0cbc
1 changed files with 2 additions and 4 deletions

View File

@ -1,14 +1,12 @@
import json import json
import os import os
from json import JSONDecodeError from typing import List
from typing import List, Optional
import marshmallow import marshmallow
import requests
from crc import app, db, ma from crc import app, db, ma
from crc.api.common import ApiError from crc.api.common import ApiError
from crc.models.file import FileModel # TODO: fix these imports
from crc.models.workflow import WorkflowSpecModel, WorkflowSpecCategoryModel, WorkflowSpecCategoryModelSchema, \ from crc.models.workflow import WorkflowSpecModel, WorkflowSpecCategoryModel, WorkflowSpecCategoryModelSchema, \
WorkflowSpecModelSchema, WorkflowLibraryModel WorkflowSpecModelSchema, WorkflowLibraryModel
from crc.services.file_system_service import FileSystemService from crc.services.file_system_service import FileSystemService