Fixes import order

This commit is contained in:
tek
2024-09-28 13:15:43 +02:00
parent b58351bfbd
commit 617c5d9e1c
4 changed files with 9 additions and 6 deletions

View File

@@ -3,9 +3,10 @@
# Use of this software is governed by the MVT License 1.1 that can be found at
# https://license.mvt.re/1.1/
from .artifact import AndroidArtifact
import re
from .artifact import AndroidArtifact
class DumpsysAccessibilityArtifact(AndroidArtifact):
def check_indicators(self) -> None:

View File

@@ -3,14 +3,14 @@
# Use of this software is governed by the MVT License 1.1 that can be found at
# https://license.mvt.re/1.1/
import json
import logging
from typing import Optional
import json
from mvt.android.utils import (
ROOT_PACKAGES,
BROWSER_INSTALLERS,
PLAY_STORE_INSTALLERS,
ROOT_PACKAGES,
THIRD_PARTY_STORE_INSTALLERS,
)

View File

@@ -4,9 +4,10 @@
# https://license.mvt.re/1.1/
import logging
import pytest
from pathlib import Path
import pytest
from mvt.android.modules.androidqf.packages import Packages
from mvt.common.module import run_module

View File

@@ -3,14 +3,15 @@
# Use of this software is governed by the MVT License 1.1 that can be found at
# https://license.mvt.re/1.1/
import logging
import os
import pytest
from .artifacts.generate_stix import generate_test_stix_file
import logging
from mvt.common.indicators import Indicators
from .artifacts.generate_stix import generate_test_stix_file
@pytest.fixture(scope="session", autouse=True)
def indicator_file(request, tmp_path_factory):