Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
jsstevenson committed Dec 12, 2023
1 parent fcbe595 commit a2c9d21
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ repos:
- id: trailing-whitespace
- id: end-of-file-fixer
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.1.2
rev: v0.1.7
hooks:
- id: ruff-format
- id: ruff
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ dynamic = ["version"]
pg = ["psycopg[binary]"]
etl = ["gffutils", "biocommons.seqrepo", "wags-tails>=0.1.1"]
test = ["pytest>=6.0", "pytest-cov", "mock", "httpx"]
dev = ["pre-commit", "ruff>=0.1.2"]
dev = ["pre-commit", "ruff>=0.1.7"]
docs = [
"sphinx==6.1.3",
"sphinx-autodoc-typehints==1.22.0",
Expand Down
19 changes: 19 additions & 0 deletions src/gene/database/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,20 @@
"""Provide database clients."""
from .database import (
AWS_ENV_VAR_NAME,
AbstractDatabase,
DatabaseException,
DatabaseInitializationException,
DatabaseReadException,
DatabaseWriteException,
create_db,
)

__all__ = [
"AWS_ENV_VAR_NAME",
"AbstractDatabase",
"DatabaseException",
"DatabaseInitializationException",
"DatabaseReadException",
"DatabaseWriteException",
"create_db",
]

0 comments on commit a2c9d21

Please sign in to comment.