Skip to content

Commit

Permalink
change bool to list due to changes in django 4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kimakan committed Jul 19, 2023
1 parent ed226fd commit ba7ba15
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion daiquiri/core/management/commands/daiquiri_path.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

class Command(BaseCommand):

requires_system_checks = False
requires_system_checks = []
can_import_settings = False

def handle(self, *args, **options):
Expand Down
2 changes: 1 addition & 1 deletion daiquiri/core/management/commands/rabbitcreate.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

class Command(BaseCommand):

requires_system_checks = False
requires_system_checks = []
can_import_settings = True

def handle(self, *args, **options):
Expand Down
2 changes: 1 addition & 1 deletion daiquiri/core/management/commands/sqlcreate.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@

class Command(BaseCommand):

requires_system_checks = False
requires_system_checks = []
can_import_settings = True

def add_arguments(self, parser):
Expand Down

0 comments on commit ba7ba15

Please sign in to comment.