linted and corrected command

This commit is contained in:
CocoByte 2024-07-24 14:18:12 -06:00
parent 9b65879a4f
commit d4f26b8d06
No known key found for this signature in database
GPG key ID: BBFAA2526384C97F
2 changed files with 1 additions and 5 deletions

View file

@ -46,7 +46,7 @@ jobs:
cf_password: ${{ secrets[env.CF_PASSWORD] }}
cf_org: cisa-dotgov
cf_space: ${{ github.event.inputs.environment }}
cf_command: "run-task getgov-${{ github.event.inputs.environment }} --command 'python manage.py drop_tables --no-input' --name flush"
cf_command: "run-task getgov-${{ github.event.inputs.environment }} --command 'python manage.py drop_tables' --name flush"
- name: Run Django migrations for ${{ github.event.inputs.environment }}
uses: cloud-gov/cg-cli-tools@main

View file

@ -1,10 +1,6 @@
import logging
from django.conf import settings
from django.core.management import BaseCommand
from django.apps import apps
from django.db import connection, transaction
from registrar.management.commands.utility.terminal_helper import TerminalHelper
logger = logging.getLogger(__name__)