Skip to content

Commit

Permalink
Merge pull request #107 from Jylpah/dev-1.0
Browse files Browse the repository at this point in the history
Remove unused imports from utils.py
  • Loading branch information
Jylpah authored Dec 19, 2023
2 parents 0fd451a + f7ac650 commit d356ab5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 10 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ classifiers = [
dependencies = [
"aiofiles~=23.1.0",
"aiohttp~=3.8.5",
"Brotli~=1.1.0",
"aiodns~=3.0.0",
"aioconsole~=0.6.1",
"alive-progress>=3.1.1",
"Brotli~=1.1.0",
"Deprecated~=1.2.14",
"click~=8.1",
"typer~=0.9.0",
Expand Down
12 changes: 3 additions & 9 deletions src/pyutils/utils.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
import logging
from bson.objectid import ObjectId
from datetime import datetime, timedelta
from typing import Optional, Any, Sequence, TypeVar, Iterator, AsyncGenerator, cast
from datetime import datetime
from typing import Optional, Any, Sequence, TypeVar, Iterator
from abc import ABC, abstractmethod
from re import compile
from itertools import islice
from aiofiles import open
from alive_progress import alive_bar # type: ignore
from inspect import stack, getmembers, currentframe
from inspect import getmembers, currentframe
from types import FrameType
import json
from time import time
Expand All @@ -24,13 +22,9 @@
from typer import Typer
from typer.testing import CliRunner as TyperRunner

import click
from click import BaseCommand
from click.testing import CliRunner

from .eventcounter import EventCounter
from .urlqueue import UrlQueue, UrlQueueItemType, is_url


# Setup logging
logger = logging.getLogger()
Expand Down

0 comments on commit d356ab5

Please sign in to comment.