Skip to content

Commit

Permalink
⬆️ auto update by pre-commit hooks (#30)
Browse files Browse the repository at this point in the history
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
  • Loading branch information
pre-commit-ci[bot] authored Feb 6, 2024
1 parent d2308fd commit 1c20921
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 19 deletions.
30 changes: 15 additions & 15 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "Default Linux Universal",
"image": "mcr.microsoft.com/devcontainers/universal:2-linux",
"features": {
"ghcr.io/devcontainers-contrib/features/pdm:2": {}
"ghcr.io/devcontainers-contrib/features/pdm:2": {},
},
"postCreateCommand": "pdm config venv.in_project true && pdm sync -G:all && pdm run pre-commit install",
"customizations": {
Expand All @@ -15,31 +15,31 @@
"editor.defaultFormatter": "ms-python.black-formatter",
"editor.codeActionsOnSave": {
"source.fixAll.ruff": true,
"source.organizeImports": true
}
"source.organizeImports": true,
},
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
"editor.defaultFormatter": "esbenp.prettier-vscode",
},
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
"editor.defaultFormatter": "esbenp.prettier-vscode",
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
"editor.defaultFormatter": "esbenp.prettier-vscode",
},
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
"editor.defaultFormatter": "esbenp.prettier-vscode",
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
"editor.defaultFormatter": "esbenp.prettier-vscode",
},
"files.exclude": {
"**/__pycache__": true
"**/__pycache__": true,
},
"files.watcherExclude": {
"**/target/**": true,
"**/__pycache__": true
}
"**/__pycache__": true,
},
},
"extensions": [
"ms-python.python",
Expand All @@ -48,8 +48,8 @@
"ms-python.black-formatter",
"charliermarsh.ruff",
"EditorConfig.EditorConfig",
"esbenp.prettier-vscode"
]
}
}
"esbenp.prettier-vscode",
],
},
},
}
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ ci:
autoupdate_commit_msg: ":arrow_up: auto update by pre-commit hooks"
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.1.9
rev: v0.2.0
hooks:
- id: ruff
args: [--fix, --exit-non-zero-on-fix]
Expand All @@ -20,7 +20,7 @@ repos:
stages: [commit]

- repo: https://github.com/psf/black
rev: 23.12.1
rev: 24.1.1
hooks:
- id: black
stages: [commit]
Expand Down
3 changes: 1 addition & 2 deletions nonebot/adapters/console/bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,7 @@ def _check_nickname(bot: "Bot", event: MessageEvent) -> None:
class Bot(BaseBot):
if TYPE_CHECKING:

async def bell(self) -> None:
...
async def bell(self) -> None: ...

@property
def type(self) -> str:
Expand Down

0 comments on commit 1c20921

Please sign in to comment.