Skip to content

Commit

Permalink
isort
Browse files Browse the repository at this point in the history
  • Loading branch information
epenet committed Feb 8, 2023
1 parent 56e5c8e commit 576b4b3
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 12 deletions.
16 changes: 8 additions & 8 deletions tests/fixtures.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,6 @@
import json
from glob import glob
from os import path
from tests.const import REDACTED
from tests.const import TEST_ACCOUNT_ID
from tests.const import TEST_COUNTRY
from tests.const import TEST_GIGYA_URL
from tests.const import TEST_KAMEREON_URL
from tests.const import TEST_PERSON_ID
from tests.const import TEST_VIN
from tests.const import TO_REDACT
from typing import Any
from typing import List
from typing import Mapping
Expand All @@ -21,6 +13,14 @@
import jwt
from aioresponses import aioresponses
from marshmallow.schema import Schema
from tests.const import REDACTED
from tests.const import TEST_ACCOUNT_ID
from tests.const import TEST_COUNTRY
from tests.const import TEST_GIGYA_URL
from tests.const import TEST_KAMEREON_URL
from tests.const import TEST_PERSON_ID
from tests.const import TEST_VIN
from tests.const import TO_REDACT

GIGYA_FIXTURE_PATH = "tests/fixtures/gigya"
KAMEREON_FIXTURE_PATH = "tests/fixtures/kamereon"
Expand Down
7 changes: 3 additions & 4 deletions tests/gigya/test_gigya.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
"""Tests for Gigya API."""
import aiohttp
import pytest
from aioresponses import aioresponses
from tests import fixtures
from tests.const import TEST_GIGYA_APIKEY
from tests.const import TEST_GIGYA_URL
Expand All @@ -7,10 +10,6 @@
from tests.const import TEST_PERSON_ID
from tests.const import TEST_USERNAME

import aiohttp
import pytest
from aioresponses import aioresponses

from renault_api import gigya


Expand Down

0 comments on commit 576b4b3

Please sign in to comment.