diff --git a/orochi/website/management/commands/import_local.py b/orochi/website/management/commands/import_local.py index 85dbfdf4..581e3f92 100644 --- a/orochi/website/management/commands/import_local.py +++ b/orochi/website/management/commands/import_local.py @@ -6,13 +6,8 @@ from django.core.management.base import BaseCommand from django.db import transaction -from orochi.website.models import ( - RESULT_STATUS_NOT_STARTED, - RESULT_STATUS_RUNNING, - Dump, - Result, - UserPlugin, -) +from orochi.website.defaults import RESULT_STATUS_NOT_STARTED, RESULT_STATUS_RUNNING +from orochi.website.models import Dump, Result, UserPlugin from orochi.website.views import index_f_and_f diff --git a/orochi/website/management/commands/plugins_sync.py b/orochi/website/management/commands/plugins_sync.py index de683c10..34ae3297 100644 --- a/orochi/website/management/commands/plugins_sync.py +++ b/orochi/website/management/commands/plugins_sync.py @@ -4,13 +4,8 @@ from volatility3 import framework from volatility3.framework import contexts -from orochi.website.models import ( - RESULT_STATUS_NOT_STARTED, - Dump, - Plugin, - Result, - UserPlugin, -) +from orochi.website.defaults import RESULT_STATUS_NOT_STARTED +from orochi.website.models import Dump, Plugin, Result, UserPlugin class Command(BaseCommand): diff --git a/version.py b/version.py index ba51cedf..f394e699 100644 --- a/version.py +++ b/version.py @@ -1 +1 @@ -__version__ = "2.2.2" +__version__ = "2.2.3"