-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
This commit refactors all of the remaining Python code to follow the standards set by the Python Software Foundation's "Black" tool: https://github.com/psf/black This are a lot of changes, but all of the changes are supposed to be cosmetic. These changes change the appearance of the Python code to adhere to the PEP-8 standards (with some deviations): https://pep8.org/ I used the `code_lint.sh` script to automatically clean up all the code. To better automate this in the future, I make a new pull request with a git pre-commit hook so Black is run every time before a commit is made. This way, we don't have to worry about following the standard consistently; it will be mandated for us. Closes #123. Huzzah! 🎉 Signed-off-by: Justin W. Flory <[email protected]>
- Loading branch information
Showing
9 changed files
with
927 additions
and
696 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from django.contrib import admin | ||
|
||
# Register your models here. | ||
from .models import * | ||
from .models import * |
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 |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
|
||
|
||
class ApplicationConfig(AppConfig): | ||
name = 'grasa_event_locator' | ||
name = "grasa_event_locator" |
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
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
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
Oops, something went wrong.