Skip to content

Commit bc9aaa6

Browse files
authored
Merge branch 'integration' into mark_hashlib
2 parents afcdc1b + 05434e9 commit bc9aaa6

1 file changed

Lines changed: 9 additions & 8 deletions

File tree

src/DIRAC/RequestManagementSystem/DB/RequestDB.py

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
11
# We disable pylint no-callable because of https://github.com/PyCQA/pylint/issues/8138
22

3-
""" Frontend for ReqDB
3+
"""Frontend for ReqDB
44
5-
:mod: RequestDB
5+
:mod: RequestDB
66
7-
=======================
7+
=======================
88
9-
.. module: RequestDB
9+
.. module: RequestDB
1010
11-
:synopsis: db holding Requests
11+
:synopsis: db holding Requests
1212
13-
db holding Request, Operation and File
13+
db holding Request, Operation and File
1414
"""
15+
1516
import datetime
1617
import errno
1718
import random
@@ -803,8 +804,8 @@ def getRequestCountersWeb(self, groupingAttribute, selectDict):
803804
groupingColumn = self._get_column("Request", groupingAttribute)
804805

805806
summaryQuery = session.query(
806-
groupingColumn, func.count(Request.RequestID)
807-
) # pylint: disable=not-callable,no-member
807+
groupingColumn, func.count(Request.RequestID) # pylint: disable=not-callable,no-member
808+
)
808809

809810
for key, value in selectDict.items():
810811
if key == "ToDate":

0 commit comments

Comments
 (0)