310c69aeff
* H301 one import per line * H302 import only modules * H306 imports not in alphabetical order Change-Id: I75d6f63515b6f5d6dc92d8cafd2176e0415c23f5
11 lines
266 B
Python
Executable File
11 lines
266 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
import os
|
|
import sys
|
|
|
|
|
|
if __name__ == "__main__":
|
|
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "muranodashboard.settings")
|
|
from django.core.management import execute_from_command_line # noqa
|
|
execute_from_command_line(sys.argv)
|