mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-16 16:57:12 +08:00
move generated stubs to separate directory, too messty
This commit is contained in:
17
django-stubs-generated/contrib/redirects/models.pyi
Normal file
17
django-stubs-generated/contrib/redirects/models.pyi
Normal file
@@ -0,0 +1,17 @@
|
||||
from typing import Any, Optional
|
||||
|
||||
from django.db import models
|
||||
|
||||
|
||||
class Redirect(models.Model):
|
||||
id: None
|
||||
site_id: int
|
||||
site: Any = ...
|
||||
old_path: str = ...
|
||||
new_path: str = ...
|
||||
class Meta:
|
||||
verbose_name: Any = ...
|
||||
verbose_name_plural: Any = ...
|
||||
db_table: str = ...
|
||||
unique_together: Any = ...
|
||||
ordering: Any = ...
|
||||
Reference in New Issue
Block a user