-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
implements a PATCH method, get rid of star imports, pass flake8, upda…
…te urlpatterns
- Loading branch information
1 parent
47c1b00
commit 858eb89
Showing
7 changed files
with
144 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,7 +39,7 @@ def run(self): | |
|
||
setup( | ||
name='DjangoRestless', | ||
version='0.0.10', | ||
version='0.0.11', | ||
author='Senko Rasic', | ||
author_email='[email protected]', | ||
description='A RESTful framework for Django', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
from django import forms | ||
|
||
from .models import * | ||
from .models import Author | ||
|
||
__all__ = ['AuthorForm'] | ||
|
||
|
Oops, something went wrong.