| Total Complexity | 1 |
| Total Lines | 10 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 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 |