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