Skip to content

Commit

Permalink
Run typing on orm/implementation/storage_backend.py
Browse files Browse the repository at this point in the history
  • Loading branch information
danielhollas committed Jan 16, 2025
1 parent f0ce39c commit 042e513
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,6 @@ repos:
src/aiida/manage/external/rmq/launcher.py|
src/aiida/manage/tests/main.py|
src/aiida/manage/tests/pytest_fixtures.py|
src/aiida/orm/implementation/storage_backend.py|
src/aiida/orm/nodes/data/array/bands.py|
src/aiida/orm/nodes/data/array/trajectory.py|
src/aiida/orm/nodes/data/cif.py|
Expand Down
2 changes: 1 addition & 1 deletion src/aiida/orm/implementation/storage_backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,7 @@ def get_orm_entities(self, detailed: bool = False) -> dict:
"""
from aiida.orm import Comment, Computer, Group, Log, Node, QueryBuilder, User

data = {}
data: dict[str, Any] = {}

query_user = QueryBuilder(self).append(User, project=['email'])
data['Users'] = {'count': query_user.count()}
Expand Down

0 comments on commit 042e513

Please sign in to comment.