Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump black from 22.12.0 to 24.3.0 #295

Merged
merged 3 commits into from
May 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 30 additions & 19 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ typing-extensions = ">=3.7.4"
aiohttp = { version = ">=3.0", optional = true }

[tool.poetry.dev-dependencies]
black = "^22.6.0"
black = "^24.3.0"
pylint = "^2.14.4"
pytest = "^7.1.2"
responses = "^0.21.0"
Expand Down
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
Loading