mirror of
https://github.com/jazzband/django-eav2.git
synced 2026-03-16 14:30:24 +00:00
Replace flake8 with ruff and apply consistent linting rules across the entire codebase. Update type annotations, quotation marks, and other style-related changes to comply with the new standards.
31 lines
763 B
Python
Executable file
31 lines
763 B
Python
Executable file
#!/usr/bin/env python
|
|
|
|
import os
|
|
import sys
|
|
|
|
|
|
def main() -> None:
|
|
"""
|
|
Main function.
|
|
|
|
It does several things:
|
|
1. Sets default settings module, if it is not set
|
|
2. Warns if Django is not installed
|
|
3. Executes any given command
|
|
"""
|
|
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "test_project.settings")
|
|
|
|
try:
|
|
from django.core import management
|
|
except ImportError as err:
|
|
raise ImportError(
|
|
"Couldn't import Django. Are you sure it's installed and "
|
|
+ "available on your PYTHONPATH environment variable? Did you "
|
|
+ "forget to activate a virtual environment?",
|
|
) from err
|
|
|
|
management.execute_from_command_line(sys.argv)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|