domain.loggingrepository   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 4
dl 0
loc 7
rs 10
c 0
b 0
f 0
wmc 1

1 Function

Rating   Name   Duplication   Size   Complexity  
A getminerlog() 0 2 1
1
2
#from sqlalchemy.sql import select
3
from domain.logging import MinerLog
4
5
def getminerlog(session):
6
    return session.query(MinerLog)
7