Skip to content

Commit f893cc8

Browse files
chore: update .pre-commit-config.yaml (#772)
1 parent ad2fe1c commit f893cc8

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.pre-commit-config.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
exclude: '^.*\.(md|MD)$'
22
repos:
33
- repo: https://github.com/pre-commit/pre-commit-hooks
4-
rev: v4.1.0
4+
rev: v4.6.0
55
hooks:
66
- id: trailing-whitespace
77
- id: check-added-large-files
@@ -10,7 +10,7 @@ repos:
1010
args: ["--fix=lf"]
1111

1212
- repo: https://github.com/pycqa/isort
13-
rev: 5.12.0
13+
rev: 5.13.2
1414
hooks:
1515
- id: isort
1616
args:
@@ -25,7 +25,7 @@ repos:
2525
]
2626

2727
- repo: https://github.com/myint/autoflake.git
28-
rev: v2.3.0
28+
rev: v2.3.1
2929
hooks:
3030
- id: autoflake
3131
args:
@@ -36,18 +36,18 @@ repos:
3636
]
3737

3838
- repo: https://github.com/psf/black
39-
rev: "23.1.0"
39+
rev: "24.4.0"
4040
hooks:
4141
- id: black
4242

4343
- repo: https://github.com/asottile/pyupgrade
44-
rev: v2.31.0
44+
rev: v3.15.2
4545
hooks:
4646
- id: pyupgrade
4747
args: ["--py37-plus", "--keep-runtime-typing"]
4848

4949
- repo: https://github.com/commitizen-tools/commitizen
50-
rev: v2.20.3
50+
rev: v3.22.0
5151
hooks:
5252
- id: commitizen
5353
stages: [commit-msg]

supabase/lib/client_options.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ class ClientOptions:
3434
realtime: Optional[Dict[str, Any]] = None
3535
"""Options passed to the realtime-py instance"""
3636

37-
postgrest_client_timeout: Union[
38-
int, float, Timeout
39-
] = DEFAULT_POSTGREST_CLIENT_TIMEOUT
37+
postgrest_client_timeout: Union[int, float, Timeout] = (
38+
DEFAULT_POSTGREST_CLIENT_TIMEOUT
39+
)
4040
"""Timeout passed to the SyncPostgrestClient instance."""
4141

4242
storage_client_timeout: Union[int, float, Timeout] = DEFAULT_STORAGE_CLIENT_TIMEOUT

0 commit comments

Comments
 (0)