Skip to content

Commit

Permalink
fix imports with isort
Browse files Browse the repository at this point in the history
  • Loading branch information
akamhy committed Feb 9, 2022
1 parent 87fb5ec commit cd5c3c6
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 5 deletions.
2 changes: 0 additions & 2 deletions tests/test_utils.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import pytest

from waybackpy import __version__
from waybackpy.utils import DEFAULT_USER_AGENT

Expand Down
2 changes: 1 addition & 1 deletion waybackpy/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
from . import __version__
from .availability_api import WaybackMachineAvailabilityAPI
from .cdx_api import WaybackMachineCDXServerAPI
from .exceptions import ArchiveNotInAvailabilityAPIResponse
from .save_api import WaybackMachineSaveAPI
from .utils import DEFAULT_USER_AGENT
from .wrapper import Url
from .exceptions import ArchiveNotInAvailabilityAPIResponse


def echo_availability_api(
Expand Down
2 changes: 0 additions & 2 deletions waybackpy/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
Utility functions and shared variables like DEFAULT_USER_AGENT are here.
"""

import requests

from . import __version__

DEFAULT_USER_AGENT: str = (
Expand Down

0 comments on commit cd5c3c6

Please sign in to comment.