ruff import sorting pass + adding uv.lock (#342)
Some checks are pending
Python Formatting Check / formatting (push) Waiting to run
Tests / Run tests (3.12) (push) Waiting to run
Tests / Run tests (3.8) (push) Waiting to run

* ruff import sorting pass

* add uv.lock

* move comment back to its proper place
This commit is contained in:
Gretchen Leigh Miller 2025-03-07 10:04:11 -08:00 committed by GitHub
parent 21102ca95c
commit 6f011cc6c8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
20 changed files with 1413 additions and 137 deletions

View file

@ -17,17 +17,18 @@ See the License for the specific language governing permissions and
limitations under the License.
"""
import pytest
import brozzler
import argparse
import http.server
import json
import logging
import os
import http.server
import threading
import argparse
import urllib
import json
import threading
import socket
import threading
import urllib
import pytest
import brozzler
arg_parser = argparse.ArgumentParser()
brozzler.cli.add_common_options(arg_parser)

View file

@ -17,11 +17,13 @@ See the License for the specific language governing permissions and
limitations under the License.
"""
import brozzler.cli
import importlib.metadata
import pytest
import subprocess
import doublethink
import pytest
import brozzler.cli
def console_scripts():

View file

@ -18,23 +18,23 @@ See the License for the specific language governing permissions and
limitations under the License.
"""
import pytest
import datetime
import http.server
import threading
import urllib.request
import os
import socket
import doublethink
import time
import brozzler
import datetime
import requests
import subprocess
import http.server
import structlog
import sys
import threading
import time
import urllib.request
import doublethink
import pytest
import requests
import structlog
import warcprox
import brozzler
logger = structlog.get_logger(logger_name=__name__)

View file

@ -17,23 +17,24 @@ See the License for the specific language governing permissions and
limitations under the License.
"""
import pytest
import datetime
import http.server
import threading
import os
import socket
import sys
import tempfile
import threading
import time
import uuid
from unittest import mock
import pytest
import requests
import yaml
import brozzler
import brozzler.chrome
import brozzler.ydl
import yaml
import datetime
import requests
import tempfile
import uuid
import socket
import time
import sys
import threading
from unittest import mock
@pytest.fixture(scope="module")