Skip to content
Merged
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
Expand Up @@ -42,14 +42,14 @@ repos:
args: [--prose-wrap=always]

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: "v0.11.4"
rev: "v0.12.2"
hooks:
- id: ruff
args: ["--fix", "--show-fixes"]
- id: ruff-format

- repo: https://github.com/pre-commit/mirrors-mypy
rev: "v1.15.0"
rev: "v1.16.1"
hooks:
- id: mypy
files: src|tests
Expand Down Expand Up @@ -81,7 +81,7 @@ repos:
- id: validate-pyproject

- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.32.1
rev: 0.33.2
hooks:
- id: check-dependabot
- id: check-github-workflows
Expand Down
1 change: 0 additions & 1 deletion src/legendmeta/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
from ._version import version as __version__
from .core import LegendMetadata
from .slowcontrol import LegendSlowControlDB
from .textdb import AttrsDict, JsonDB, TextDB

__all__ = [
"AttrsDict",
Expand Down
57 changes: 0 additions & 57 deletions src/legendmeta/textdb.py

This file was deleted.

2 changes: 1 addition & 1 deletion tests/test_slowcontroldb.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

import pytest
import sqlalchemy as sql
from dbetto import AttrsDict

from legendmeta import LegendMetadata, LegendSlowControlDB
from legendmeta.slowcontrol import DiodeSnap
from legendmeta.textdb import AttrsDict

pytestmark = [
pytest.mark.xfail(
Expand Down