diff options
| author | Max Nanis | 2026-08-18 16:35:11 -0700 |
|---|---|---|
| committer | Max Nanis | 2026-08-18 16:35:11 -0700 |
| commit | 0742210fc7eaa54d8068bfd18414158dc9b33672 (patch) | |
| tree | 5f42b671ccbd9cc44f1f62229cac16a5e455317d /test_utils | |
| parent | 6b4f8d6b8700a65bdf74beb3d95c969a81464a56 (diff) | |
| download | generalresearch-0742210fc7eaa54d8068bfd18414158dc9b33672.tar.gz generalresearch-0742210fc7eaa54d8068bfd18414158dc9b33672.zip | |
Ruff cleanup
Diffstat (limited to 'test_utils')
| -rw-r--r-- | test_utils/managers/network/conftest.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test_utils/managers/network/conftest.py b/test_utils/managers/network/conftest.py index c699c93..6c5ea23 100644 --- a/test_utils/managers/network/conftest.py +++ b/test_utils/managers/network/conftest.py @@ -1,5 +1,5 @@ import os -from datetime import timedelta, datetime, timezone +from datetime import datetime, timedelta, timezone from uuid import uuid4 import pytest @@ -10,13 +10,13 @@ from generalresearch.models.network.definitions import IPProtocol from generalresearch.models.network.mtr.parser import parse_mtr_output from generalresearch.models.network.nmap.parser import parse_nmap_xml from generalresearch.models.network.rdns.parser import parse_rdns_output -from generalresearch.models.network.tool_run import NmapRun, Status, RDNSRun, MTRRun +from generalresearch.models.network.tool_run import MTRRun, NmapRun, RDNSRun, Status from generalresearch.models.network.tool_run_command import ( MTRRunCommand, MTRRunCommandOptions, - RDNSRunCommand, NmapRunCommand, NmapRunCommandOptions, + RDNSRunCommand, RDNSRunCommandOptions, ) |
