From bf5eed69a735ff3d859830209a42f98d2329eeca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hanno=20B=C3=B6ck?= <990588+hannob@users.noreply.github.com> Date: Sat, 25 Nov 2023 21:53:22 +0100 Subject: [PATCH] use isort style import sorting --- setup.py | 1 + tests/test_codingstyle.py | 4 ++-- tests/test_docs.py | 2 +- tests/test_scan_testdata.py | 8 ++++---- 4 files changed, 8 insertions(+), 7 deletions(-) diff --git a/setup.py b/setup.py index a5f4792..b2c3f4e 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,7 @@ #!/usr/bin/env python3 import os + import setuptools package_name = "snallygaster" diff --git a/tests/test_codingstyle.py b/tests/test_codingstyle.py index b02cb9f..a06d5a5 100644 --- a/tests/test_codingstyle.py +++ b/tests/test_codingstyle.py @@ -1,6 +1,6 @@ -import unittest -import subprocess import glob +import subprocess +import unittest class TestCodingstyle(unittest.TestCase): diff --git a/tests/test_docs.py b/tests/test_docs.py index 891bace..ffe4174 100644 --- a/tests/test_docs.py +++ b/tests/test_docs.py @@ -1,5 +1,5 @@ -import unittest import re +import unittest class TestCodingstyle(unittest.TestCase): diff --git a/tests/test_scan_testdata.py b/tests/test_scan_testdata.py index fb3895c..4545bbf 100644 --- a/tests/test_scan_testdata.py +++ b/tests/test_scan_testdata.py @@ -1,10 +1,10 @@ -import unittest -import subprocess -import os -import tempfile import http.server +import os import ssl +import subprocess +import tempfile import threading +import unittest TESTDATA_REPO = "https://github.com/hannob/snallygaster-testdata"