Skip to content

Commit 2ddbd44

Browse files
committed
fix black and isort and bad config key
1 parent 2c330f5 commit 2ddbd44

File tree

3 files changed

+3
-8
lines changed

3 files changed

+3
-8
lines changed

mystbin/errors.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
"""
2222
import aiohttp
2323

24+
2425
__all__ = (
2526
"APIException",
2627
"AuthenticationRequired",

mystbin/types/responses.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
"""
2222

2323
from __future__ import annotations
24-
from datetime import datetime
2524

25+
from datetime import datetime
2626
from typing import Optional, TypedDict
2727

2828

pyproject.toml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -49,15 +49,9 @@ docs = ["sphinx", "sphinxcontrib-trio", "furo"]
4949
[tool.poetry.scripts]
5050
version = 'mystbin.__main__:show_version'
5151

52-
[tool.ruff]
53-
fixable = ["A", "B", "C", "D", "E", "F", "G", "I", "N", "Q", "S", "T", "W", "ANN", "ARG", "BLE", "COM", "DJ", "DTZ", "EM", "ERA", "EXE", "FBT", "ICN", "INP", "ISC", "NPY", "PD", "PGH", "PIE", "PL", "PT", "PTH", "PYI", "RET", "RSE", "RUF", "SIM", "SLF", "TCH", "TID", "TRY", "UP", "YTT"]
54-
unfixable = []
55-
line-length = 125
56-
target-version = "py311"
57-
5852
[tool.black]
5953
line-length = 125
60-
target-version = "py311"
54+
target-version = ["py311"]
6155

6256
[tool.isort]
6357
profile = "black"

0 commit comments

Comments
 (0)