Skip to content

Commit

Permalink
fix black and isort and bad config key
Browse files Browse the repository at this point in the history
  • Loading branch information
AbstractUmbra committed Jul 21, 2023
1 parent 2c330f5 commit 2ddbd44
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 8 deletions.
1 change: 1 addition & 0 deletions mystbin/errors.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
"""
import aiohttp


__all__ = (
"APIException",
"AuthenticationRequired",
Expand Down
2 changes: 1 addition & 1 deletion mystbin/types/responses.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
"""

from __future__ import annotations
from datetime import datetime

from datetime import datetime
from typing import Optional, TypedDict


Expand Down
8 changes: 1 addition & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,15 +49,9 @@ docs = ["sphinx", "sphinxcontrib-trio", "furo"]
[tool.poetry.scripts]
version = 'mystbin.__main__:show_version'

[tool.ruff]
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"]
unfixable = []
line-length = 125
target-version = "py311"

[tool.black]
line-length = 125
target-version = "py311"
target-version = ["py311"]

[tool.isort]
profile = "black"
Expand Down

0 comments on commit 2ddbd44

Please sign in to comment.