Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
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
Prev Previous commit
Next Next commit
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] authored and tony committed Jan 22, 2022
commit ba77eb70edb17a11b5c920a778d575965b468a36
4 changes: 2 additions & 2 deletions src/poetry/config/source.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import dataclasses

from typing import Dict
from typing import Union

import dataclasses


@dataclasses.dataclass(order=True, eq=True)
class Source:
Expand Down
3 changes: 2 additions & 1 deletion tests/console/commands/source/test_add.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import dataclasses

from typing import TYPE_CHECKING

import dataclasses
import pytest


Expand Down
2 changes: 1 addition & 1 deletion tests/utils/test_authenticator.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import re
import uuid

from dataclasses import dataclass
from typing import TYPE_CHECKING
from typing import Any
from typing import Dict
Expand All @@ -13,7 +14,6 @@
import requests

from cleo.io.null_io import NullIO
from dataclasses import dataclass

from poetry.utils.authenticator import Authenticator

Expand Down