ore.management.commands.fuzzed_version   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A Command.handle() 0 2 1
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