From 10722ef35cd8abadf34f3f146db1e018339707fd Mon Sep 17 00:00:00 2001 From: Mark Watts Date: Sun, 22 May 2022 08:28:32 -0500 Subject: [PATCH] Addressing more doc refs --- rdflib_sqlalchemy/statistics.py | 4 ++-- rdflib_sqlalchemy/store.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/rdflib_sqlalchemy/statistics.py b/rdflib_sqlalchemy/statistics.py index 6929a5d..a355cb9 100644 --- a/rdflib_sqlalchemy/statistics.py +++ b/rdflib_sqlalchemy/statistics.py @@ -22,8 +22,8 @@ def get_group_by_count(session, group_by_column): ) -class StatisticsMixin(object): - +class StatisticsMixin: + ''' Has methods for statistics on stores ''' def statistics(self, asserted_statements=True, literals=True, types=True): """Store statistics.""" statistics = { diff --git a/rdflib_sqlalchemy/store.py b/rdflib_sqlalchemy/store.py index f3e1dd7..ebeb769 100644 --- a/rdflib_sqlalchemy/store.py +++ b/rdflib_sqlalchemy/store.py @@ -107,7 +107,7 @@ def __init__(self, identifier=None, configuration=None, engine=None, corresponding to the connection options accepted by sqlalchemy.create_engine, with the additional "url" key pointing to the connection URL. See `open` documentation for more details. - engine (sqlalchemy.engine.Engine, optional): a pre-existing `SQLAlchemy.engine.Engine` instance. + engine (`sqlalchemy.engine.Engine`, optional): a pre-existing engine instance. max_terms_per_where (int): The max number of terms (s/p/o) in a call to triples_choices to combine in one SQL "where" clause. Important for SQLite back-end with SQLITE_MAX_EXPR_DEPTH limit and SQLITE_LIMIT_COMPOUND_SELECT