From 6a49110b30d2f2ef9786f639beaeeb83cf465f25 Mon Sep 17 00:00:00 2001 From: bernard-ng Date: Mon, 6 Oct 2025 18:01:17 +0200 Subject: [PATCH] [crawler]: fix style with ruff --- projects/crawler/src/basango/services/crawler/async_api.py | 1 - .../crawler/src/basango/services/http_client/base_http_client.py | 1 - 2 files changed, 2 deletions(-) diff --git a/projects/crawler/src/basango/services/crawler/async_api.py b/projects/crawler/src/basango/services/crawler/async_api.py index 000b4c1..2f08ba5 100644 --- a/projects/crawler/src/basango/services/crawler/async_api.py +++ b/projects/crawler/src/basango/services/crawler/async_api.py @@ -1,7 +1,6 @@ from __future__ import annotations from importlib import import_module -from typing import Any, Sequence _async_queue = import_module("basango.services.crawler.async.queue") _async_tasks = import_module("basango.services.crawler.async.tasks") diff --git a/projects/crawler/src/basango/services/http_client/base_http_client.py b/projects/crawler/src/basango/services/http_client/base_http_client.py index 7d04b9d..52caab7 100644 --- a/projects/crawler/src/basango/services/http_client/base_http_client.py +++ b/projects/crawler/src/basango/services/http_client/base_http_client.py @@ -1,7 +1,6 @@ from __future__ import annotations import random -import time from abc import ABC, abstractmethod from dataclasses import dataclass, field from datetime import datetime, timezone