Skip to content

Commit 7ea6ee8

Browse files
[pre-commit.ci] pre-commit autoupdate (#54)
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent d65522e commit 7ea6ee8

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ ci:
66
77
repos:
88
- repo: https://github.com/psf/black
9-
rev: 22.10.0
9+
rev: 23.7.0
1010
hooks:
1111
- id: black
1212
name: Running black in all files.
1313

1414
- repo: https://github.com/pycqa/isort
15-
rev: 5.10.1
15+
rev: 5.12.0
1616
hooks:
1717
- id: isort
1818
args: ["--profile", "black", "--extend-skip", "examples"]
@@ -23,7 +23,7 @@ repos:
2323
files: ^examples/
2424

2525
- repo: https://github.com/pre-commit/pre-commit-hooks
26-
rev: v4.3.0
26+
rev: v4.4.0
2727
hooks:
2828
- id: check-ast
2929
name: Check if python files are valid syntax for the ast parser

docs/extensions/attributetable.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ def build_lookup_table(env):
159159
"class",
160160
}
161161

162-
for (fullname, _, objtype, _, _, _) in domain.get_objects():
162+
for fullname, _, objtype, _, _, _ in domain.get_objects():
163163
if objtype in ignored:
164164
continue
165165

nextcord/ext/menus/menus.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@ def __init__(
7474
position: Optional[Position] = None,
7575
lock: Optional[bool] = True,
7676
):
77-
7877
self.emoji = _cast_emoji(emoji)
7978
self.action = action
8079
self.skip_if = skip_if
@@ -272,7 +271,6 @@ def __init__(
272271
check_embeds: bool = False,
273272
message: Optional[Union[nextcord.Message, nextcord.PartialInteractionMessage]] = None,
274273
):
275-
276274
self.timeout = timeout
277275
self.delete_message_after = delete_message_after
278276
self.clear_reactions_after = clear_reactions_after

0 commit comments

Comments
 (0)