Command.handle()   A
last analyzed

Complexity

Conditions 1

Size

Total Lines 2
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 2
dl 0
loc 2
rs 10
c 0
b 0
f 0
cc 1
nop 3
1
from django.core.management.base import BaseCommand
2
import ore
3
4
5
class Command(BaseCommand):
6
    help = 'Prints the ORE version and exits.'
7
8
    def handle(self, *args, **options):
9
        print ore.VERSION
10