mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-10 05:51:53 +08:00
run black over stubs, add checking to travis
This commit is contained in:
@@ -2,7 +2,6 @@ from typing import Any, Optional
|
||||
|
||||
from django.core.management.base import BaseCommand, CommandParser
|
||||
|
||||
|
||||
class Command(BaseCommand):
|
||||
stderr: django.core.management.base.OutputWrapper
|
||||
stdout: django.core.management.base.OutputWrapper
|
||||
@@ -12,6 +11,4 @@ class Command(BaseCommand):
|
||||
def add_arguments(self, parser: CommandParser) -> None: ...
|
||||
verbosity: Any = ...
|
||||
def handle(self, *tablenames: Any, **options: Any) -> None: ...
|
||||
def create_table(
|
||||
self, database: str, tablename: str, dry_run: bool
|
||||
) -> None: ...
|
||||
def create_table(self, database: str, tablename: str, dry_run: bool) -> None: ...
|
||||
|
||||
Reference in New Issue
Block a user