From 8ae127a3d60fe874dd6d87a1e1970e811602e693 Mon Sep 17 00:00:00 2001 From: Davide Arcuri Date: Wed, 7 Aug 2024 16:36:51 +0200 Subject: [PATCH] #1100 --- orochi/website/management/commands/import_local.py | 9 ++------- orochi/website/management/commands/plugins_sync.py | 9 ++------- version.py | 2 +- 3 files changed, 5 insertions(+), 15 deletions(-) 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"