mirror of
https://github.com/django/django.git
synced 2025-08-02 10:02:41 +00:00
PEP8 cleanup
Signed-off-by: Jason Myers <jason@jasonamyers.com>
This commit is contained in:
parent
0fdb692c6c
commit
7a61c68c50
128 changed files with 739 additions and 206 deletions
|
@ -54,6 +54,7 @@ class ActionAdmin(admin.ModelAdmin):
|
|||
class Person(models.Model):
|
||||
name = models.CharField(max_length=20)
|
||||
|
||||
|
||||
class PersonAdmin(admin.ModelAdmin):
|
||||
|
||||
def response_post_save_add(self, request, obj):
|
||||
|
@ -68,6 +69,7 @@ class PersonAdmin(admin.ModelAdmin):
|
|||
class Car(models.Model):
|
||||
name = models.CharField(max_length=20)
|
||||
|
||||
|
||||
class CarAdmin(admin.ModelAdmin):
|
||||
|
||||
def response_add(self, request, obj, post_url_continue=None):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue