manage.main()   A
last analyzed

Complexity

Conditions 2

Size

Total Lines 12
Code Lines 9

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 9
dl 0
loc 12
rs 9.95
c 0
b 0
f 0
cc 2
nop 0
1
#!/usr/bin/env python
2
"""Django's command-line utility for administrative tasks."""
3
import os
4
import sys
5
6
7
def main():
8
    """Run administrative tasks."""
9
    os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'todolist.settings')
10
    try:
11
        from django.core.management import execute_from_command_line
12
    except ImportError as exc:
13
        raise ImportError(
14
            "Couldn't import Django. Are you sure it's installed and "
15
            "available on your PYTHONPATH environment variable? Did you "
16
            "forget to activate a virtual environment?"
17
        ) from exc
18
    execute_from_command_line(sys.argv)
19
20
21
if __name__ == '__main__':
22
    main()
23