Skip to content

Commit 10722ef

Browse files
committed
Addressing more doc refs
1 parent 889fda3 commit 10722ef

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

rdflib_sqlalchemy/statistics.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ def get_group_by_count(session, group_by_column):
2222
)
2323

2424

25-
class StatisticsMixin(object):
26-
25+
class StatisticsMixin:
26+
''' Has methods for statistics on stores '''
2727
def statistics(self, asserted_statements=True, literals=True, types=True):
2828
"""Store statistics."""
2929
statistics = {

rdflib_sqlalchemy/store.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ def __init__(self, identifier=None, configuration=None, engine=None,
107107
corresponding to the connection options accepted by sqlalchemy.create_engine,
108108
with the additional "url" key pointing to the connection URL. See `open` documentation
109109
for more details.
110-
engine (sqlalchemy.engine.Engine, optional): a pre-existing `SQLAlchemy.engine.Engine` instance.
110+
engine (`sqlalchemy.engine.Engine`, optional): a pre-existing engine instance.
111111
max_terms_per_where (int): The max number of terms (s/p/o) in a call to
112112
triples_choices to combine in one SQL "where" clause. Important for SQLite
113113
back-end with SQLITE_MAX_EXPR_DEPTH limit and SQLITE_LIMIT_COMPOUND_SELECT

0 commit comments

Comments
 (0)