Skip to content

Commit 8ae127a

Browse files
author
Davide Arcuri
committed
1 parent 9c4f7a0 commit 8ae127a

File tree

3 files changed

+5
-15
lines changed

3 files changed

+5
-15
lines changed

orochi/website/management/commands/import_local.py

+2-7
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,8 @@
66
from django.core.management.base import BaseCommand
77
from django.db import transaction
88

9-
from orochi.website.models import (
10-
RESULT_STATUS_NOT_STARTED,
11-
RESULT_STATUS_RUNNING,
12-
Dump,
13-
Result,
14-
UserPlugin,
15-
)
9+
from orochi.website.defaults import RESULT_STATUS_NOT_STARTED, RESULT_STATUS_RUNNING
10+
from orochi.website.models import Dump, Result, UserPlugin
1611
from orochi.website.views import index_f_and_f
1712

1813

orochi/website/management/commands/plugins_sync.py

+2-7
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,8 @@
44
from volatility3 import framework
55
from volatility3.framework import contexts
66

7-
from orochi.website.models import (
8-
RESULT_STATUS_NOT_STARTED,
9-
Dump,
10-
Plugin,
11-
Result,
12-
UserPlugin,
13-
)
7+
from orochi.website.defaults import RESULT_STATUS_NOT_STARTED
8+
from orochi.website.models import Dump, Plugin, Result, UserPlugin
149

1510

1611
class Command(BaseCommand):

version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "2.2.2"
1+
__version__ = "2.2.3"

0 commit comments

Comments
 (0)