mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-16 00:37:11 +08:00
Correct type of core.management.commands.runserver.Command.default_port (#604)
Strangely this variable is actually a string:
8bcb00858e/django/core/management/commands/runserver.py (L33)
This commit is contained in:
@@ -3,5 +3,5 @@ from django.core.management.base import BaseCommand
|
||||
class Command(BaseCommand):
|
||||
default_addr: str = ...
|
||||
default_addr_ipv6: str = ...
|
||||
default_port: int = ...
|
||||
default_port: str = ...
|
||||
protocol: str = ...
|
||||
|
||||
Reference in New Issue
Block a user