Command   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Importance

Changes 2
Bugs 1 Features 1
Metric Value
wmc 1
c 2
b 1
f 1
dl 0
loc 6
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A handle() 0 2 1
1
from django.core.management.base import BaseCommand, CommandError
2
from pages.plugins.pofiles.utils import import_po_files
3
4
class Command(BaseCommand):
5
    args = '<path>'
6
    help = import_po_files.__doc__
7
8
    def handle(self, *args, **options):
9
        import_po_files(*args)