Skip to content

Commit

Permalink
Fixed --ipv6, --nothreading, --noreload arguments for runserver subco…
Browse files Browse the repository at this point in the history
…mmand.
  • Loading branch information
oliverandrich committed Mar 3, 2024
1 parent ad90980 commit 75daeb7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/django_tailwind_cli/management/commands/tailwind.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,20 +49,20 @@ def add_arguments(self, parser: CommandParser) -> None:
"runserver",
help="Start the Django development server and the Tailwind CLI in watch mode.",
)
parser.add_argument(
runserver_parser.add_argument(
"--ipv6",
"-6",
action="store_true",
dest="use_ipv6",
help="Tells Django to use an IPv6 address.",
)
parser.add_argument(
runserver_parser.add_argument(
"--nothreading",
action="store_true",
dest="no_threading",
help="Tells Django to NOT use threading.",
)
parser.add_argument(
runserver_parser.add_argument(
"--noreload",
action="store_true",
dest="no_reloader",
Expand Down

0 comments on commit 75daeb7

Please sign in to comment.