Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
---
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: "v0.5.6"
rev: "v0.13.0"
hooks:
- id: ruff
args: [--fix]
- id: ruff-format
args: [--config=pyproject.toml]

- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.11.1
rev: v1.18.1
hooks:
- id: mypy
language_version: python3.11

- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
rev: v6.0.0
hooks:
- id: end-of-file-fixer
2 changes: 1 addition & 1 deletion tests/test_public_sheet.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from streamlit_gsheets import GSheetsConnection


@pytest.fixture()
@pytest.fixture
def expected_df() -> pd.DataFrame:
return pd.DataFrame(
{
Expand Down
Loading