Skip to content

Commit 2e8219b

Browse files
committed
small rename for statistics [ci skip]
1 parent 947827a commit 2e8219b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

rdflib_sqlalchemy/statistics.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ class StatisticsMixin(object):
2424

2525
def statistics(self, asserted_statements=True, literals=True, types=True):
2626
"""Store statistics."""
27-
statistics = dict(
28-
total_num_statements=len(self),
29-
)
27+
statistics = {
28+
"store": dict(total_num_statements=len(self)),
29+
}
3030

3131
with self.engine.connect() as connection:
3232
session = Session(bind=connection)

0 commit comments

Comments
 (0)