Skip to content

Commit

Permalink
fixing code to be compliant the failed Lint test (Black).
Browse files Browse the repository at this point in the history
  • Loading branch information
elkezza committed May 27, 2024
1 parent 917814e commit 78f4f7e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 10 deletions.
7 changes: 2 additions & 5 deletions exoscale/api/v2.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,8 @@
from pathlib import Path

from exoscale_auth import ExoscaleV2Auth
from .exceptions import (
ExoscaleAPIAuthException,
ExoscaleAPIClientException,
ExoscaleAPIServerException,
)
from .exceptions import ExoscaleAPIClientException, ExoscaleAPIServerException, ExoscaleAPIAuthException


import requests

Expand Down
7 changes: 2 additions & 5 deletions tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,8 @@

from exoscale.api.v2 import Client

from exoscale.api.exceptions import (
ExoscaleAPIClientException,
ExoscaleAPIServerException,
ExoscaleAPIAuthException,
)
from exoscale.api.exceptions import ExoscaleAPIClientException, ExoscaleAPIServerException, ExoscaleAPIAuthException



def test_client_creation():
Expand Down

0 comments on commit 78f4f7e

Please sign in to comment.