Skip to content

Commit b208d79

Browse files
authored
Merge pull request #134 from eggplants/pre-commit-ci-update-config
[pre-commit.ci] pre-commit autoupdate
2 parents fe62ae9 + 3f4a2f2 commit b208d79

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ repos:
3434
hooks:
3535
- id: black
3636
- repo: https://github.com/astral-sh/ruff-pre-commit
37-
rev: v0.7.3
37+
rev: v0.8.1
3838
hooks:
3939
- id: ruff
4040
args: [--fix]
@@ -49,7 +49,7 @@ repos:
4949
- types-requests
5050
- lxml-stubs
5151
- repo: https://github.com/igorshubovych/markdownlint-cli
52-
rev: v0.42.0
52+
rev: v0.43.0
5353
hooks:
5454
- id: markdownlint
5555
exclude: ^.github/PULL_REQUEST_TEMPLATE.md

shindan_cli/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
from .shindan import ShindanError, ShindanResult, shindan
66

77
__version__ = "2.1.0"
8-
__all__ = ("shindan", "ShindanResult", "ShindanError")
8+
__all__ = ("ShindanError", "ShindanResult", "shindan")

shindan_cli/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
}
1818

1919
__all__ = (
20-
"TARGET_KEYS_BY_TYPE",
2120
"BASE_URL",
2221
"HEADERS",
22+
"TARGET_KEYS_BY_TYPE",
2323
)

shindan_cli/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@ class UserInput(TypedDict):
4747
UserInputs = dict[str, UserInput]
4848

4949
__all__ = (
50-
"ShindanResult",
5150
"QuestionBranch",
5251
"QuestionChoice",
52+
"ShindanResult",
5353
"UserInput",
5454
"UserInputs",
5555
)

0 commit comments

Comments
 (0)