Skip to content

Commit

Permalink
Reformat tests to have blank line after comment
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewsomething committed May 28, 2024
1 parent 1c80991 commit 3a693b3
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions tests/integration/shared.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
""" shared.py
This shared module provides helpers for working with the API through the client.
"""

import contextlib
import secrets
import uuid
Expand Down
1 change: 1 addition & 0 deletions tests/integration/test_billing.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
""" test_billing.py
Integration Test for Billing
"""

import os
import pytest
from pydo import Client
Expand Down
1 change: 1 addition & 0 deletions tests/integration/test_sizes.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
""" test_sizes.py
Integration Test for Sizes
"""

import pytest

from pydo import Client
Expand Down
1 change: 1 addition & 0 deletions tests/mocked/test_account.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Mock tests for the account API resource."""

import pytest
import responses
from aioresponses import aioresponses
Expand Down
1 change: 1 addition & 0 deletions tests/mocked/test_actions.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Mock tests for the actions API resource"""

import responses

from pydo import Client
Expand Down
1 change: 1 addition & 0 deletions tests/mocked/test_cdn.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Mock tests for the CDN endpoints."""

import responses

from pydo import Client
Expand Down
1 change: 1 addition & 0 deletions tests/mocked/test_client_customizations.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
These tests aren't essential but serve as good examples for using the client with
custom configuration.
"""

import logging
import re

Expand Down
1 change: 1 addition & 0 deletions tests/mocked/test_firewalls.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Mock tests for the firewalls API resource."""

import responses

from pydo import Client
Expand Down
1 change: 1 addition & 0 deletions tests/mocked/test_one_click.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Mock tests for the 1-click API resource."""

import responses
from responses import matchers

Expand Down
1 change: 1 addition & 0 deletions tests/mocked/test_ssh_keys.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Mock tests for the keys API resource."""

import responses
from responses import matchers

Expand Down
1 change: 1 addition & 0 deletions tests/mocked/test_tags.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Mock tests for the tags API resource."""

import responses
from responses import matchers

Expand Down

0 comments on commit 3a693b3

Please sign in to comment.