Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Davide Arcuri committed Aug 7, 2024
1 parent 9c4f7a0 commit 8ae127a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 15 deletions.
9 changes: 2 additions & 7 deletions orochi/website/management/commands/import_local.py
Original file line number Diff line number Diff line change
Expand Up @@ -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


Expand Down
9 changes: 2 additions & 7 deletions orochi/website/management/commands/plugins_sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down
2 changes: 1 addition & 1 deletion version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "2.2.2"
__version__ = "2.2.3"

0 comments on commit 8ae127a

Please sign in to comment.